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
{ "type": "object", "required": [ "domain" ], "properties": { "domain": { "type": "string", "description": "The domain name to look up for company information." } } }
Response Schema
{ "type": "object", "required": [], "properties": { "funding": { "type": "object", "title": "", "required": false, "properties": { "total_funding": { "type": "number", "description": "The total amount of funding the company has raised." }, "last_funding_round": { "type": "string", "description": "Details about the company's most recent funding round." } }, "description": "Information about the company's funding history." }, "revenue": { "type": "object", "title": "", "required": false, "properties": { "growth_rate": { "type": "number", "description": "The company's estimated year-over-year revenue growth rate." }, "annual_revenue": { "type": "number", "description": "The company's estimated annual revenue." } }, "description": "Information about the company's financial performance." }, "website": { "type": "string", "title": "", "required": false, "description": "The company's primary website URL." }, "industry": { "type": "string", "title": "", "required": false, "description": "The primary industry the company operates in." }, "location": { "type": "object", "title": "", "required": false, "properties": { "city": { "type": "string", "description": "The city where the company is headquartered." }, "state": { "type": "string", "description": "The state or province where the company is headquartered." }, "country": { "type": "string", "description": "The country where the company is headquartered." }, "timezone": { "type": "string", "description": "The time zone where the company is located." }, "country_code": { "type": "string", "description": "The ISO 3166-1 alpha-2 country code where the company is located." } }, "description": "The company's geographical location details." }, "tech_stack": { "type": "array", "items": { "type": "string" }, "title": "", "required": false, "description": "The primary technologies and software used by the company." }, "company_name": { "type": "string", "title": "", "required": false, "description": "The legal name of the company." }, "social_media": { "type": "object", "title": "", "required": false, "properties": { "twitter": { "type": "string", "description": "The company's Twitter profile URL." }, "facebook": { "type": "string", "description": "The company's Facebook page URL." }, "linkedin": { "type": "string", "description": "The company's LinkedIn page URL." } }, "description": "The company's social media presence." }, "employee_count": { "type": "integer", "title": "", "required": false, "description": "The estimated number of employees at the company." } } }
API Metadata
387
1
company-data
domain-lookup
business-intelligence
data-enrichment
API Examples
{ "domain": "example.com" }
{ "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 }