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/companies/{slug}Return enriched profile for one company including funding stats, investors, signals, and tech stack.
curl -s "https://latestrounds.com/api/v1/companies/openai" \
-H "Authorization: Bearer YOUR_API_KEY"const res = await fetch("https://latestrounds.com/api/v1/companies/openai", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();import requests
resp = requests.get(
"https://latestrounds.com/api/v1/companies/openai",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())| Name | Type | Required | Description |
|---|---|---|---|
| slug | string | yes | Company slug, e.g. openai. |
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
| Field | Type | Description |
|---|---|---|
| data.id | string | Company id. |
| data.funding_stats | object | round_count and total_raised_usd. |
| data.latest_funding | object|null | Most recent funding event. |
| data.tech_stack | array | Normalized technologies list. |
| data.investors | array | Unique investors across published deals. |
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Company slug does not exist. |
| 401 | unauthorized | Missing or invalid API key. |
{
"data": {
"id": "cmp_9",
"name": "OpenAI",
"slug": "openai",
"funding_stats": { "round_count": 8, "total_raised_usd": 11300000000 }
}
}