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 investor profile

GET/api/v1/investor/{id}

Return enriched profile for one investor including type, geography, check size range, and portfolio stats.

Request - cURL
curl -s "https://latestrounds.com/api/v1/investor/sequoia" \
  -H "Authorization: Bearer YOUR_API_KEY"
Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/investor/sequoia", {
  headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();
Request - Python
import requests

resp = requests.get(
  "https://latestrounds.com/api/v1/investor/sequoia",
  headers={"Authorization": "Bearer YOUR_API_KEY"},
  timeout=30,
)
print(resp.json())

Path parameters

NameTypeRequiredDescription
idstringyesInvestor ID or slug, e.g. sequoia.

Query parameters

No fields.

Headers

NameValueRequired
AuthorizationBearer YOUR_API_KEYyes

Response fields

FieldTypeDescription
data.idstringInvestor ID.
data.canonical_namestringNormalized investor name.
data.investor_typestringvc, angel, corporate, accelerator, etc.
data.countrystringPrimary country.
data.check_size_min_usdnumberMinimum check size in USD.
data.check_size_max_usdnumberMaximum check size in USD.
data.portfolio_statsobjectdeal_count, total_invested_usd, deal_types.

Error responses

StatusCodeDescription
404not_foundInvestor ID or slug does not exist.
401unauthorizedMissing or invalid API key.

Sample response

200 OK
{
  "data": {
    "id": "inv_100",
    "slug": "sequoia",
    "canonical_name": "Sequoia Capital",
    "investor_type": "vc",
    "country": "United States",
    "check_size_min_usd": 1000000,
    "check_size_max_usd": 50000000,
    "portfolio_stats": { "deal_count": 104, "total_invested_usd": 2400000000 }
  }
}