API Documentation

Free REST API for AI venture funding data. No authentication required. Attribution appreciated.

Overview

Base URL: https://aifunding.me/api/v1

Format: JSON

Authentication: None (free and open)

Rate Limiting: Please be reasonable (no more than 60 requests/minute)

CORS: Enabled for all origins

All responses include pagination metadata (total, limit, offset) in a meta object.

Endpoints

GET/api/v1/companies

List all AI companies with their total funding and latest round information.

Query Parameters

ParameterTypeDescription
sectorstringFilter by sector (partial match, case-insensitive)
locationstringFilter by location (partial match, case-insensitive)
limitintegerResults per page (1-100, default: 50)
offsetintegerNumber of results to skip (default: 0)

Example Request

curl "https://aifunding.me/api/v1/companies?sector=infrastructure&limit=2"

Example Response

{
  "data": [
    {
      "name": "Databricks",
      "slug": "databricks",
      "description": "Unified analytics platform...",
      "sector": "AI Infrastructure",
      "location": "San Francisco, CA",
      "foundedYear": 2013,
      "websiteUrl": "https://databricks.com",
      "totalRaised": 4100000000,
      "roundCount": 2,
      "latestRound": {
        "stage": "Series J",
        "amount": 2600000000,
        "date": "2024-12-20"
      },
      "profileUrl": "https://aifunding.me/companies/databricks"
    }
  ],
  "meta": { "total": 10, "limit": 2, "offset": 0 }
}
GET/api/v1/rounds

List funding rounds sorted by date (most recent first). Includes investor details.

Query Parameters

ParameterTypeDescription
companystringFilter by company slug (partial match)
investorstringFilter by investor name or slug (partial match)
minAmountnumberMinimum stored face-value amount in each result's reported currency (no currency conversion)
maxAmountnumberMaximum stored face-value amount in each result's reported currency (no currency conversion)
limitintegerResults per page (1-100, default: 50)
offsetintegerNumber of results to skip (default: 0)

Example Request

curl "https://aifunding.me/api/v1/rounds?minAmount=1000000000&limit=3"

Example Response

{
  "data": [
    {
      "companySlug": "openai",
      "companyName": "OpenAI",
      "amount": 6600000000,
      "currency": "USD",
      "valuation": 157000000000,
      "stage": "Late Stage",
      "date": "2024-10-02",
      "description": "Massive funding round...",
      "investors": [
        { "name": "Thrive Capital", "isLead": true },
        { "name": "Microsoft", "isLead": false }
      ],
      "companyProfileUrl": "https://aifunding.me/companies/openai"
    }
  ],
  "meta": { "total": 15, "limit": 3, "offset": 0 }
}
GET/api/v1/investors

List all investors with portfolio stats and companies they have funded.

Query Parameters

ParameterTypeDescription
limitintegerResults per page (1-100, default: 50)
offsetintegerNumber of results to skip (default: 0)

Example Request

curl "https://aifunding.me/api/v1/investors?limit=2"

Example Response

{
  "data": [
    {
      "name": "Andreessen Horowitz",
      "slug": "andreessen-horowitz",
      "type": "Venture Capital",
      "description": "Leading VC firm...",
      "websiteUrl": "https://a16z.com",
      "roundCount": 8,
      "totalInvested": 15000000000,
      "portfolioCompanies": [
        { "name": "OpenAI", "slug": "openai" },
        { "name": "Databricks", "slug": "databricks" }
      ],
      "profileUrl": "https://aifunding.me/investors/andreessen-horowitz"
    }
  ],
  "meta": { "total": 28, "limit": 2, "offset": 0 }
}

Usage Notes

  • Responses reflect the currently tracked records in the repository.
  • Round responses include an explicit currency. Company and investor aggregate fields are legacy face-value totals and should not be treated as normalized USD when their underlying rounds use multiple currencies.
  • If you use this data on your website or in an application, a link back to aifunding.me is appreciated.
  • For embeddable widgets, check out the Widget Builder.

Built by AI Funding — tracked AI venture funding data and analysis.