Lookup company by domain
GET
/api/v1/companies/lookupResolve a company record from website domain and return a compact enriched profile.
Request - cURL
curl -s "https://latestrounds.com/api/v1/companies/lookup?domain=openai.com" \
-H "Authorization: Bearer YOUR_API_KEY"Request - JavaScript (fetch)
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();Request - Python
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())Path parameters
No fields.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| domain | string | yes | Website domain, with or without protocol. |
Headers
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
Response fields
| Field | Type | Description |
|---|---|---|
| data | object | Company profile with funding_stats, latest_funding, signals, tech_stack. |
Error responses
| Status | Code | Description |
|---|---|---|
| 400 | invalid_parameter | domain is missing. |
| 404 | not_found | No company matched domain. |
Sample response
200 OK
{
"data": {
"id": "cmp_9",
"name": "OpenAI",
"slug": "openai",
"signal_score": 98
}
}