Company Enrichment API

Public

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

PropertyTypeRequiredDescription
domain
string
required
The domain name to look up for company information.

Response Schema

PropertyTypeRequiredDescription
funding
object
optionalInformation about the company's funding history.
total_funding
number
optionalThe total amount of funding the company has raised.
last_funding_round
string
optionalDetails about the company's most recent funding round.
revenue
object
optionalInformation about the company's financial performance.
growth_rate
number
optionalThe company's estimated year-over-year revenue growth rate.
annual_revenue
number
optionalThe company's estimated annual revenue.
website
string
optionalThe company's primary website URL.
industry
string
optionalThe primary industry the company operates in.
location
object
optionalThe company's geographical location details.
city
string
optionalThe city where the company is headquartered.
state
string
optionalThe state or province where the company is headquartered.
country
string
optionalThe country where the company is headquartered.
timezone
string
optionalThe time zone where the company is located.
country_code
string
optionalThe ISO 3166-1 alpha-2 country code where the company is located.
tech_stack
string[]
optionalThe primary technologies and software used by the company.
company_name
string
optionalThe legal name of the company.
social_media
object
optionalThe company's social media presence.
twitter
string
optionalThe company's Twitter profile URL.
facebook
string
optionalThe company's Facebook page URL.
linkedin
string
optionalThe company's LinkedIn page URL.
employee_count
integer
optionalThe 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
}