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/lookupResolve a company record from website domain and return a compact enriched profile.
curl -s "https://latestrounds.com/api/v1/companies/lookup?domain=openai.com" \
-H "Authorization: Bearer YOUR_API_KEY"const res = await fetch("https://latestrounds.com/api/v1/companies/lookup?domain=openai.com", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();import requests
resp = requests.get(
"https://latestrounds.com/api/v1/companies/lookup",
params={"domain": "openai.com"},
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())| Name | Type | Required | Description |
|---|---|---|---|
| domain | string | yes | Website domain, with or without protocol. |
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
| Field | Type | Description |
|---|---|---|
| data | object | Company profile with funding_stats, latest_funding, signals, tech_stack. |
| Status | Code | Description |
|---|---|---|
| 400 | invalid_parameter | domain is missing. |
| 404 | not_found | No company matched domain. |
{
"data": {
"id": "cmp_9",
"name": "OpenAI",
"slug": "openai",
"signal_score": 98
}
}