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 portfolio

GET/api/v1/investor/{id}/portfolio

Return all funded companies in an investor's portfolio with deal details.

Request - cURL
curl -s "https://latestrounds.com/api/v1/investor/sequoia/portfolio" \
  -H "Authorization: Bearer YOUR_API_KEY"
Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/investor/sequoia/portfolio", {
  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/portfolio",
  headers={"Authorization": "Bearer YOUR_API_KEY"},
  timeout=30,
)
print(resp.json())

Path parameters

NameTypeRequiredDescription
idstringyesInvestor ID or slug.

Query parameters

NameTypeRequiredDescription
limit, offsetnumbernoPagination controls.

Headers

NameValueRequired
AuthorizationBearer YOUR_API_KEYyes

Response fields

FieldTypeDescription
data[]arrayPortfolio companies with deal stage, amount, and announced date.
paginationobjectcount, limit, offset, has_more.

Error responses

StatusCodeDescription
404not_foundInvestor not found.
401unauthorizedMissing or invalid API key.

Sample response

200 OK
{
  "data": [
    {
      "company": { "id": "cmp_9", "name": "Stripe", "slug": "stripe" },
      "stage": "series_i",
      "amount_usd": 600000000,
      "announced_date": "2023-03-14"
    }
  ],
  "pagination": { "count": 104, "limit": 20, "offset": 0, "has_more": true }
}