Reverse Domain Lookup
REQUIREMENT
The base URL for all API requests is https://api.reversecontact.comNOTE
The API KEY is required to authorize requests. It MUST be included as a query parameter.REVERSE DOMAIN LOOKUP
This operation allows you to find data from a domain. It returns company information as the response. This operation consume 1 credit.
GET /enrichment/company/domain?apikey=API_KEY&domain=TARGET_DOMAIN
{
"success": true,
"company": {
"linkedInUrl": "https://www.linkedin.com/company/visum-run/",
"name": "Visum",
"websiteUrl": "https://visum.run",
"logo": "https://media.licdn.com/dms/image/C4E0BAQEbr48diDvnrw/company-logo_200_200/0/1674558570304?e=1705536000&v=beta&t=F9SV8wQpI8HVpJPUZSmiGAGpWHDo1kGTVOgc2wJwEsw",
"description": "In other words “the mister gadget” of Data enrichment. \n\nWe specialize in hunting down all types of data for your business - with over 5 years of experience and already 3 enrichment tools created, we're dedicated to providing you with the most comprehensive and up-to-date data possible, no matter how complex or difficult it may be to get it.\n\nTrust us to be your data hunting experts and help you stay ahead of the competition.",
"tagline": "Data Hunter for companies",
"specialities": [
"Lead Generation",
"Lead Qualification",
"Market Search",
"Competitor analysis",
"CRM enrichment"
],
"headquarter": {
"country": "FR",
"geographicArea": "Île-de-France",
"city": "Paris",
"postalCode": "75013"
},
"industry": "Technology, Information and Internet",
"employeeCount": 8,
"universalName": "visum-run",
"linkedInId": "71234370"
},
"credits_left": 1773,
"rate_limit_left": 19989
}
{
"success": true,
"company": false,
"credits_left": 1773,
"rate_limit_left": 19989
}
Kindly reference here for all possible error responses
QUERY PARAMETERS
apikey
This required parameter is a string
. It represents the APIKEY obtained from the developer dashboard.
domain
This required parameter is a string
. It represents the domain to query.
RESPONSE DATA
The endpoint returns information about the company. There are two possible success responses for the operation.
- Query Successful but no data found
- Query Successful with data found
- success
boolean
- Indicates success or failure of api request. - company
boolean|object
- Represent the company found. It returns a Profile object if the company data is found. It returns afalse
if the company data is not found - credits_left
int
- Represents the usable credits available for the user account after this query - rate_limit_left
int
- Represents the usable daily request limit available for the user account after this query