Company Funding API

Get comprehensive funding data for any company — funding rounds, acquisitions, investors, and employee profiles by company domain.

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

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • company Required
    The company domain (e.g. "acmecorp.com").

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/company_funding" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "company=acmecorp.com"
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"]
    }
  ]
}