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/investorsInvestor directory with deal counts and filtering by query/country/date window.
curl -s "https://latestrounds.com/api/v1/investors?query=sequoia&country=US&min_deal_count=3&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"const res = await fetch("https://latestrounds.com/api/v1/investors?query=sequoia&limit=10", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();import requests
resp = requests.get(
"https://latestrounds.com/api/v1/investors",
params={"query": "sequoia", "min_deal_count": 3, "limit": 10},
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())| Name | Type | Required | Description |
|---|---|---|---|
| query, q | string | no | Search by investor name or slug. |
| country | string|csv | no | Filter by deal location country. |
| min_deal_count | number | no | Minimum number of deals per investor. |
| exclude_generic | boolean | no | Exclude generic investor labels. |
| sort | enum | no | deal_count_desc, deal_count_asc, name_asc, name_desc. |
| limit, offset | number | no | Pagination controls (plan-capped: Starter 10, Growth 20, Scale 50). |
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
| Field | Type | Description |
|---|---|---|
| data[] | array | Investor id, slug, name, deal_count. |
| pagination | object | count, limit, offset, has_more. |
| filters_applied | object | Applied query and date filters. |
| Status | Code | Description |
|---|---|---|
| 401 | unauthorized | Missing or invalid API key. |
| 500 | internal_error | Unexpected server error. |
{
"data": [{ "id": "inv_100", "slug": "sequoia", "name": "Sequoia", "deal_count": 104 }],
"pagination": { "count": 1, "limit": 10, "offset": 0, "has_more": false }
}