Authentication
Use a dashboard-generated API key on every request: Authorization: Bearer YOUR_API_KEY.
API reference
Access funding rounds, company enrichment, signals, investors, and categories from one API. Browse endpoints from the left sidebar to open a dedicated page per endpoint.
Use a dashboard-generated API key on every request: Authorization: Bearer YOUR_API_KEY.
Per-minute burst limits, monthly quota, and page-size caps are enforced by plan.
https://latestrounds.com/api/v1
/api/v1/filtersReturn pre-computed countries, deal types, industries, and investors for filter controls.
curl -s "https://latestrounds.com/api/v1/filters?investors_limit=100&industries_limit=100" \
-H "Authorization: Bearer YOUR_API_KEY"const res = await fetch("https://latestrounds.com/api/v1/filters?investors_limit=100&industries_limit=100", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();import requests
resp = requests.get(
"https://latestrounds.com/api/v1/filters",
params={"investors_limit": 100, "industries_limit": 100},
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())| Name | Type | Required | Description |
|---|---|---|---|
| investors_limit | number | no | Max investors returned (1-1000). |
| industries_limit | number | no | Max industries returned (1-1000). |
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
| Field | Type | Description |
|---|---|---|
| countries[] | array | Country value plus deal_count. |
| deal_types[] | array | Deal type value plus deal_count. |
| industries[] | array | Industry value plus deal_count. |
| investors[] | array | Investor slug/name/deal_count. |
| sort_options | array | Sort values for compatible endpoints. |
| Status | Code | Description |
|---|---|---|
| 401 | unauthorized | Missing or invalid API key. |
{
"countries": [{ "value": "United States", "deal_count": 942 }],
"deal_types": [{ "value": "seed", "deal_count": 410 }],
"industries": [{ "value": "developer tools", "deal_count": 229 }],
"investors": [{ "slug": "sequoia", "name": "Sequoia", "deal_count": 104 }]
}