Company Investment API

Get comprehensive investment data for any company — funding rounds, acquisitions, investors, and employee profiles via Crunchbase ID or company domain.

Endpoint: https://api.enrichmentapi.io/investment

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"). Costs 1 credit.
  • domain Optional
    Company domain for domain-based lookup (e.g. "amazon.com"). Costs 2 credits.

API Examples

Code to Integrate
import requests

api_key = "YOUR_API_KEY"
url = "https://api.enrichmentapi.io/company-investment"

params = {
    "api_key": api_key,
    "domain": "acmecorp.com"
}

response = requests.get(url, params=params)
if response.status_code == 200:
    print(response.json())
API Response
{
  "company": "Acme Corp",
  "domain": "acmecorp.com",
  "total_funding": "$48,000,000",
  "funding_stage": "Series B",
  "last_round_date": "2024-03",
  "rounds": [
    {
      "type": "Series B",
      "amount": "$30,000,000",
      "date": "2024-03",
      "investors": ["Sequoia Capital", "Andreessen Horowitz"]
    },
    {
      "type": "Series A",
      "amount": "$12,000,000",
      "date": "2022-07",
      "investors": ["Accel", "Y Combinator"]
    }
  ]
}