Get company founders
GET
/api/v1/company/{id}/foundersReturn founder profiles for a company including name, role, and LinkedIn URL when available.
Request - cURL
curl -s "https://latestrounds.com/api/v1/company/cmp_9/founders" \
-H "Authorization: Bearer YOUR_API_KEY"Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/company/cmp_9/founders", {
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/founders",
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 | Founder records. |
| data[].name | string | Full name. |
| data[].role | string | Title or role. |
| data[].linkedin_url | string|null | LinkedIn profile URL. |
Error responses
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Company ID not found. |
| 401 | unauthorized | Missing or invalid API key. |
Sample response
200 OK
{
"data": [
{ "name": "Jane Smith", "role": "CEO & Co-Founder", "linkedin_url": "https://linkedin.com/in/janesmith" }
]
}