Company API
Retrieve detailed company profiles by Crunchbase ID. Returns company name, description, industry, funding, headcount, location, leadership, and more.
Endpoint:
https://api.enrichmentapi.io/companyAPI Parameters
🔑
Authentication
api_keyRequiredYour API key from the dashboard.
🔍
Query Parameters
companyRequiredThe Crunchbase ID of the company (e.g. "amazon", "google", "microsoft").
API Examples
Code to Integrate
import requests api_key = "YOUR_API_KEY" url = "https://api.enrichmentapi.io/company" params = { "api_key": api_key, "domain": "acmecorp.com" } response = requests.get(url, params=params) if response.status_code == 200: data = response.json() print(data) else: print(f"Request failed: {response.status_code}")
const axios = require('axios'); axios.get('https://api.enrichmentapi.io/company', { params: { api_key: 'YOUR_API_KEY', domain: 'acmecorp.com' } }).then(res => console.log(res.data)) .catch(err => console.error(err.message));
<?php $api_key = 'YOUR_API_KEY'; $domain = 'acmecorp.com'; $url = "https://api.enrichmentapi.io/company?api_key={$api_key}&domain={$domain}"; $data = json_decode(file_get_contents($url), true); print_r($data);