Enrichment
Company firmographics (Wikidata join) API
Given a company name OR a domain, resolve a clean firmographic profile from Wikidata (name, description, industry, country, headquarters, founded, website, employee count, logo, Wikidata id) and merge live domain signals (resolvable + email-capable) when a domain is supplied. The value-add is keyless company resolution + normalization — the free slice of the Apollo/Clado firmographics category. Answers 'enrich this company','firmographics for stripe.com','what industry/country is this company','when was this company founded'.
Price$0.01per request
MethodPOST
Route/v1/enrich/company
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache300s public
enrichcompanywikidatafirmographicsb2borganizationprofileintelligence
API URL
Integration docshttps://x402.hexl.dev/v1/enrich/companyExample request
{
"company": "Stripe",
"domain": "stripe.com"
}Example response
{
"name": "Stripe",
"description": "Irish-American payment technology company",
"industry": "financial services",
"country": "United States",
"headquarters": "San Francisco",
"founded": 2010,
"website": "https://stripe.com",
"employeeCount": 2500,
"wikidataId": "Q7624104",
"logo": "https://commons.wikimedia.org/wiki/Special:FilePath/Stripe%20Logo%2C%20revised%202016.svg",
"wikidataUrl": "https://www.wikidata.org/wiki/Q7624104",
"domain": {
"domain": "stripe.com",
"resolvable": true,
"emailCapable": true
},
"sources": [
"wikidata",
"dns"
],
"resolved": true
}Input schema
{
"type": "object",
"required": [],
"properties": {
"company": {
"type": "string",
"examples": [
"Stripe"
]
},
"domain": {
"type": "string",
"examples": [
"stripe.com"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}