Skip to main content
POST
/
enrich
/
company
curl -X POST https://api.dataforb2b.ai/enrich/company \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "company_identifier": "google"
  }'
{
  "company": {
    "id": "<string>",
    "name": "<string>",
    "tagline": {},
    "description": {},
    "industry": {},
    "headquarters": {
      "country": "<string>",
      "city": "<string>",
      "region": "<string>"
    },
    "founded_year": {},
    "company_type": {},
    "logo_url": {},
    "links": {
      "website": {},
      "linkedin": "<string>",
      "twitter": {},
      "instagram": {},
      "facebook": {}
    },
    "size": {
      "employees": 123,
      "range_min": 123,
      "range_max": {}
    },
    "metrics": {
      "followers": 123,
      "active_jobs": 123
    },
    "signals": {
      "verified": true
    },
    "categories": [
      {}
    ],
    "locations": {
      "country": "<string>",
      "city": "<string>",
      "region": "<string>",
      "is_headquarters": true
    },
    "funding": {
      "stage": "<string>",
      "total_rounds": 123,
      "total_usd": 123,
      "last_round_usd": 123,
      "last_round_date": "<string>"
    },
    "funding_rounds": {
      "round": "<string>",
      "amount_usd": 123,
      "date": "<string>"
    },
    "investors": {
      "name": "<string>",
      "type": "<string>"
    },
    "growth": {
      "percent_1m": 123,
      "percent_6m": 123,
      "percent_12m": 123,
      "recent_hires": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt

Use this file to discover all available pages before exploring further.

Credit Cost

Data TypeCredits
Full company info1.5 credits

Request Body

company_identifier
string
required
Company identifier. Supports multiple formats:
  • Universal name (slug): google, microsoft, apple
  • Full URL: https://www.linkedin.com/company/google/
  • Short URL: linkedin.com/company/google
  • Encoded ID: org_0000000000000000000000000009qU5aRV (partial support)

Response

company
object
Complete company data with all available information

curl -X POST https://api.dataforb2b.ai/enrich/company \
  -H "api_key: YOUR_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "company_identifier": "google"
  }'