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/companiesList all AI companies with their total funding and latest round information.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| sector | string | Filter by sector (partial match, case-insensitive) |
| location | string | Filter by location (partial match, case-insensitive) |
| limit | integer | Results per page (1-100, default: 50) |
| offset | integer | Number 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/roundsList funding rounds sorted by date (most recent first). Includes investor details.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| company | string | Filter by company slug (partial match) |
| investor | string | Filter by investor name or slug (partial match) |
| minAmount | number | Minimum round amount in USD |
| maxAmount | number | Maximum round amount in USD |
| limit | integer | Results per page (1-100, default: 50) |
| offset | integer | Number 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,
"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/investorsList all investors with portfolio stats and companies they have funded.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| limit | integer | Results per page (1-100, default: 50) |
| offset | integer | Number 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
- Data is updated daily as new AI funding rounds are tracked.
- All monetary amounts are in USD.
- 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 — the most comprehensive AI venture funding tracker.