Get similar companies
GET
/api/v1/company/{id}/peersReturn companies similar to the target based on industry, stage, and funding profile. Use for prospecting expansion.
Request - cURL
curl -s "https://latestrounds.com/api/v1/company/cmp_9/peers" \
-H "Authorization: Bearer YOUR_API_KEY"Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/company/cmp_9/peers", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();Request - Python
import requests
resp = requests.get(
"https://latestrounds.com/api/v1/company/cmp_9/peers",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Company ID (cmp_…). |
Query parameters
No fields.
Headers
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
Response fields
| Field | Type | Description |
|---|---|---|
| data[] | array | Similar company records with name, slug, stage, and country. |
Error responses
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Company ID not found. |
| 401 | unauthorized | Missing or invalid API key. |
Sample response
200 OK
{
"data": [
{ "id": "cmp_42", "name": "Acme AI", "slug": "acme-ai", "stage": "series_a", "country": "United States" }
]
}