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/company

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • company Required
    The 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}")