Skip to content

BizData API [Starter]

Returns firmographic data for a domain — company name, industry, location, languages, and social profiles. Employee count, revenue range, business model, and MX provider are available as additional fields. 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 (see Industries)
redirect_domainStringFinal domain if redirects exist
update_dateDateLast record update
FieldTypeDescription
employeesStringEmployee count range: 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+
revenue_rangeStringRevenue bucket: <1M, 1-10M, 10-100M, 100M-1B, >1B, or N/A when unknown
business_modelObjectBusiness model labels with confidence scores: B2B, B2C, B2G, G2B, G2C, D2C, C2C, C2B
mx_providerStringEmail/MX hosting provider domain (e.g., google.com, microsoft.com), no_mx when the domain has no mail server, or null when not resolved
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",
"revenue_range": "10-100M",
"business_model": {
"B2B": 0.92,
"B2G": 0.08
},
"mx_provider": "google.com",
"update_date": "2024-01-15"
}