API Details
The Company Enrichment API outputs detailed company profiles based on publicly available data for a given domain name. It delivers key information such as the company's name, industry, employee count, financial metrics (funding and revenue), technological stack, and social media presence. Additionally, it provides geographical details like location, time zone, and country code, as well as visual elements such as the company logo and website URL. This tool is invaluable for enriching customer data, improving lead qualification, and enabling thorough market analysis, thereby supporting more strategic business decisions and tailored interactions.
Request Schema
| Property | Type | Required | Description |
|---|---|---|---|
domain | string | required | The domain name to look up for company information. |
Response Schema
| Property | Type | Required | Description |
|---|---|---|---|
funding | object | optional | Information about the company's funding history. |
total_funding | number | optional | The total amount of funding the company has raised. |
last_funding_round | string | optional | Details about the company's most recent funding round. |
revenue | object | optional | Information about the company's financial performance. |
growth_rate | number | optional | The company's estimated year-over-year revenue growth rate. |
annual_revenue | number | optional | The company's estimated annual revenue. |
website | string | optional | The company's primary website URL. |
industry | string | optional | The primary industry the company operates in. |
location | object | optional | The company's geographical location details. |
city | string | optional | The city where the company is headquartered. |
state | string | optional | The state or province where the company is headquartered. |
country | string | optional | The country where the company is headquartered. |
timezone | string | optional | The time zone where the company is located. |
country_code | string | optional | The ISO 3166-1 alpha-2 country code where the company is located. |
tech_stack | string[] | optional | The primary technologies and software used by the company. |
company_name | string | optional | The legal name of the company. |
social_media | object | optional | The company's social media presence. |
twitter | string | optional | The company's Twitter profile URL. |
facebook | string | optional | The company's Facebook page URL. |
linkedin | string | optional | The company's LinkedIn page URL. |
employee_count | integer | optional | The estimated number of employees at the company. |
API Metadata
ID387
Version
v1
Method
post
Endpoint
/company-enrichment-api/v1
Tags
company-data
domain-lookup
business-intelligence
data-enrichment
API Examples
Example Request
{
"domain": "example.com"
}Example Response
{
"logo": "https://example.com/logo.png",
"funding": {
"total_funding": 50000000,
"last_funding_round": "Series C, $25M"
},
"revenue": {
"growth_rate": 0.25,
"annual_revenue": 35000000
},
"website": "https://example.com",
"industry": "Technology",
"location": {
"city": "San Francisco",
"state": "California",
"country": "United States",
"timezone": "America/Los_Angeles",
"country_code": "US"
},
"tech_stack": [
"React",
"Node.js",
"MongoDB",
"AWS"
],
"company_name": "Example Inc.",
"social_media": {
"twitter": "https://twitter.com/example",
"facebook": "https://facebook.com/example",
"linkedin": "https://linkedin.com/company/example-inc"
},
"employee_count": 250
}