Skip to content

BizData API [Starter]

Returns firmographic data for a domain — company name, industry, employee count, location, languages, and social profiles. Subdomains are automatically normalized to root domain. Use alongside Score for lead prioritization and Growth for quarter-over-quarter changes.

GET https://api.discolike.com/v1/bizdata
ParameterDescription
domainDomain to look up
FieldTypeDescription
domainStringNormalized domain (unique identifier)
nameStringCompany name from certificate or website
statusObjectOperating status: active or closed with confidence score
scoreIntegerDigital footprint score (1-800) reflecting company size
start_dateDateFirst certificate date (company start estimate)
end_dateDateLast certificate date if closed, null if active
addressObjectHQ address (street, city, state, zip, country)
phonesArrayPhone numbers from website
public_emailsArrayContact emails from website
social_urlsArraySocial media profile URLs
descriptionStringCompany description from website
keywordsObjectNLP-generated keywords with confidence scores
industry_groupsObjectTop 2 industry classifications with scores
employeesStringEmployee count range (e.g., 1-10, 51-200, 1001-5000, 10001+)
redirect_domainStringFinal domain if redirects exist
update_dateDateLast record update
Terminal window
curl "https://api.discolike.com/v1/bizdata?domain=acmecorp.com" \
-H "x-discolike-key: API_KEY"
{
"domain": "acmecorp.com",
"name": "Acme Corporation",
"status": { "status": "active", "confidence": 1 },
"score": 650,
"start_date": "2010-03-15",
"end_date": null,
"address": {
"street": "123 Main Street",
"city": "San Francisco",
"state": "CA",
"zip": "94105",
"country": "US"
},
"phones": ["+15555550100"],
"public_emails": ["info@acmecorp.com"],
"social_urls": [
"https://twitter.com/acmecorp",
"https://www.linkedin.com/company/acme-corporation"
],
"description": "Leading provider of enterprise software solutions.",
"keywords": {
"enterprise software": 0.70,
"cloud solutions": 0.65,
"business automation": 0.61
},
"industry_groups": {
"SOFTWARE": 0.95,
"IT_SERVICES": 0.01
},
"employees": "201-500",
"update_date": "2024-01-15"
}