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"
  }'
import requests

response = requests.post(
    "https://api.dataforb2b.ai/enrich/company",
    headers={
        "api_key": "YOUR_api_key",
        "Content-Type": "application/json"
    },
    json={
        "company_identifier": "google"
    }
)

data = response.json()
company = data.get('company')

print(f"Company: {company['name']}")
print(f"Industry: {company['industry']}")
print(f"Employees: {company['size']['employees']}")
print(f"Followers: {company['metrics']['followers']}")
const response = await fetch('https://api.dataforb2b.ai/enrich/company', {
  method: 'POST',
  headers: {
    'api_key': 'YOUR_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    company_identifier: 'google'
  })
});

const data = await response.json();
const company = data.company;

console.log('Company:', company.name);
console.log('Industry:', company.industry);
console.log('Employees:', company.size.employees);
console.log('Followers:', company.metrics.followers);
{
  "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
    }
  }
}

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"
  }'
import requests

response = requests.post(
    "https://api.dataforb2b.ai/enrich/company",
    headers={
        "api_key": "YOUR_api_key",
        "Content-Type": "application/json"
    },
    json={
        "company_identifier": "google"
    }
)

data = response.json()
company = data.get('company')

print(f"Company: {company['name']}")
print(f"Industry: {company['industry']}")
print(f"Employees: {company['size']['employees']}")
print(f"Followers: {company['metrics']['followers']}")
const response = await fetch('https://api.dataforb2b.ai/enrich/company', {
  method: 'POST',
  headers: {
    'api_key': 'YOUR_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    company_identifier: 'google'
  })
});

const data = await response.json();
const company = data.company;

console.log('Company:', company.name);
console.log('Industry:', company.industry);
console.log('Employees:', company.size.employees);
console.log('Followers:', company.metrics.followers);