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/signalsQuery action-ready signals by signal key, score threshold, location, deal type, and tech stack.
curl -s "https://latestrounds.com/api/v1/signals?signal=just_raised,modern_stack&signal_match=all&country=US&min_signal_score=70&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"const res = await fetch("https://latestrounds.com/api/v1/signals?signal=just_raised,modern_stack&signal_match=all&limit=10", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();import requests
resp = requests.get(
"https://latestrounds.com/api/v1/signals",
params={
"signal": "just_raised,modern_stack",
"signal_match": "all",
"min_signal_score": 70,
"limit": 10,
},
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())| Name | Type | Required | Description |
|---|---|---|---|
| signal | csv | no | Signal keys. Example: just_raised,modern_stack. |
| signal_match | enum | no | any (default) or all. |
| min_signal_score | number | no | Minimum score threshold. |
| country, city, category, deal_type | string|csv | no | Filtering dimensions. |
| tech_stack, tech_match | csv|enum | no | Technology filters and matching mode. |
| format | enum | no | default or flat. |
| limit, offset, sort | number|enum | no | Pagination and ordering (plan-capped: Starter 10, Growth 20, Scale 50). |
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
| Field | Type | Description |
|---|---|---|
| data[] | array | Companies plus signal metadata and latest funding summary. |
| signal_keys | array | Valid signal key catalog. |
| pagination | object | count, limit, offset, has_more. |
| Status | Code | Description |
|---|---|---|
| 400 | invalid_parameter | Unknown signal key. |
| 401 | unauthorized | Missing or invalid API key. |
{
"data": [{
"company": { "id": "cmp_9", "name": "Acme AI", "slug": "acme-ai" },
"signal_score": 87,
"signals": ["just_raised", "modern_stack"]
}],
"pagination": { "count": 218, "limit": 10, "offset": 0, "has_more": true }
}