API Reference

LatestRounds API

API reference

LatestRounds API

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.

Get company founders

GET/api/v1/company/{id}/founders

Return 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

NameTypeRequiredDescription
idstringyesCompany ID (cmp_…).

Query parameters

No fields.

Headers

NameValueRequired
AuthorizationBearer YOUR_API_KEYyes

Response fields

FieldTypeDescription
data[]arrayFounder records.
data[].namestringFull name.
data[].rolestringTitle or role.
data[].linkedin_urlstring|nullLinkedIn profile URL.

Error responses

StatusCodeDescription
404not_foundCompany ID not found.
401unauthorizedMissing or invalid API key.

Sample response

200 OK
{
  "data": [
    { "name": "Jane Smith", "role": "CEO & Co-Founder", "linkedin_url": "https://linkedin.com/in/janesmith" }
  ]
}