Company Data API: Name, City, and Headcount From a URL
A company data API takes a website URL and returns the organization behind it — name, city, country, employee range — as JSON. On Klazify that endpoint is POST https://www.klazify.com/api/domain_company with a Bearer token. The official quick-start example is https://www.cbsnews.com.
Starter is $39.99/mo (500 successful calls) with a 7-day trial. Failed or unreachable lookups are not billed. This is not website IAB classification — that is POST /api/domain_iab_categories. Docs: klazify.com/api-docs.
Request: company record for a URL
curl 'https://www.klazify.com/api/domain_company' -X POST \
-H 'Accept: application/json' \
-H 'Authorization: Bearer YOUR_API_KEY' \
--data $'url=https://www.cbsnews.com'
Auth is Authorization: Bearer. The official sample sends url as form data (not a JSON body). Same host as categorize / IAB — different path.
Response: official CBS News sample
{
"domain": {
"domain_url": "https://cbsnews.com",
"updated_at": "2022-12-19T15:44:44.000000Z"
},
"success": true,
"objects": {
"company": {
"name": "CBS News",
"city": "New York",
"stateCode": "NY",
"countryCode": "US",
"employeesRange": "1K-5K",
"revenue": null,
"raised": null,
"tags": ["Publishing", "Broadcasting", "B2C"]
}
}
}
revenue and raised are null in this fixture — do not invent a dollar figure. employeesRange is a bucket (1K-5K), not a headcount integer.
Use cases
- CRM enrichment. A form captures
acme.com. Storeobjects.company.name,city, andcountryCodebefore a sales rep opens the record. - Lead scoring. Route
employeesRange1K-5K(and larger buckets) to enterprise AE queues; leavenullrevenue alone. - Publisher / advertiser lists.
tagson this sample include Publishing and Broadcasting — filter a domain list before IAB classify.
Go live
1. Register and start the 7-day trial.
2. Copy the Bearer token.
3. POST https://www.klazify.com/api/domain_company with url=https://www.cbsnews.com
4. Read objects.company.name. Field list: /api-docs.
FAQ: company data API
Is this the IAB endpoint?
No. IAB taxonomy is POST /api/domain_iab_categories. Company name and city are /api/domain_company.
Can I send JSON instead of form fields?
The published quick-start curl uses form url=. Match that unless your docs page shows a JSON variant for this path.
Ready to use Klazify?
Start classifying websites, enriching company data, and exploring web intelligence.
Get Started Free