Company info & business intelligence
Business intelligence and company data APIs. Company lookup, firmographics, and business verification.
Search and retrieve company information. Find businesses by name, domain, or registration number.
GET /api/v1/business/company
?name=Acme+Corp&domain=acme.com
// Response
{ "company_name": "Acme Corporation",
"domain": "acme.com",
"industry": "Technology",
"employees": "500-1000",
"founded": 2010,
"headquarters": "San Francisco, CA" }
Detailed business demographics. Get comprehensive company profiles with industry, size, and revenue data.
GET /api/v1/business/firmographics
?company_id=abc123
// Response
{ "company_id": "abc123",
"revenue_range": "$10M-$50M",
"employee_count": 250,
"industry": "SaaS",
"sub_industry": "Marketing Tech",
"company_type": "Private" }
Verify business legitimacy. Confirm registration status, active standing, and legal entity details.
POST /api/v1/business/verify
{ "ein": "12-3456789",
"company_name": "Acme Corp" }
// Response
{ "verified": true,
"status": "Active",
"entity_type": "Corporation",
"state": "Delaware",
"registration_date": "2010-03-15" }
Latest news about companies. Track press releases, media mentions, and industry news.
GET /api/v1/business/news
?company=acme&limit=5
// Response
{ "company": "Acme Corp",
"articles": [
{ "title": "Acme Raises $50M",
"source": "TechCrunch",
"date": "2024-01-15",
"sentiment": "positive" }
], "total": 127 }
Public company financials. Access revenue, profit, and key financial metrics for public companies.
GET /api/v1/business/financials
?ticker=ACME
// Response
{ "ticker": "ACME",
"market_cap": "$2.5B",
"revenue": "$450M",
"net_income": "$45M",
"pe_ratio": 25.4,
"fiscal_year": 2023 }
SIC/NAICS codes lookup. Get standardized industry classification codes for any business.
GET /api/v1/business/classification
?company_id=abc123
// Response
{ "company_id": "abc123",
"sic_code": "7372",
"sic_desc": "Prepackaged Software",
"naics_code": "511210",
"naics_desc": "Software Publishers",
"primary_industry": "Technology" }
Find company leadership. Get executives, board members, and key decision makers.
GET /api/v1/business/executives
?company_id=abc123
// Response
{ "company": "Acme Corp",
"executives": [
{ "name": "Jane Smith",
"title": "CEO",
"since": 2018,
"linkedin": "linkedin.com/in/jsmith" }
], "board_size": 7 }
Industry market analysis. Get market size, growth trends, and competitive landscape data.
GET /api/v1/business/market
?industry=saas®ion=north-america
// Response
{ "industry": "SaaS",
"market_size": "$195B",
"growth_rate": "18.2%",
"top_players": 25,
"forecast_2025": "$250B",
"region": "North America" }
Get your API key and start accessing business intelligence in minutes.