HomeAPI Docs

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.

Authentication

Use a dashboard-generated API key on every request: Authorization: Bearer YOUR_API_KEY.

Rate and limits

Per-minute burst limits, monthly quota, and page-size caps are enforced by plan.

Base URL

https://latestrounds.com/api/v1

List investors

GET/api/v1/investors

Investor directory with deal counts and filtering by query/country/date window.

Request - cURL
curl -s "https://latestrounds.com/api/v1/investors?query=sequoia&country=US&min_deal_count=3&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"
Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/investors?query=sequoia&limit=10", {
  headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();
Request - Python
import requests

resp = requests.get(
  "https://latestrounds.com/api/v1/investors",
  params={"query": "sequoia", "min_deal_count": 3, "limit": 10},
  headers={"Authorization": "Bearer YOUR_API_KEY"},
  timeout=30,
)
print(resp.json())

Path parameters

No fields.

Query parameters

NameTypeRequiredDescription
query, qstringnoSearch by investor name or slug.
countrystring|csvnoFilter by deal location country.
min_deal_countnumbernoMinimum number of deals per investor.
exclude_genericbooleannoExclude generic investor labels.
sortenumnodeal_count_desc, deal_count_asc, name_asc, name_desc.
limit, offsetnumbernoPagination controls (plan-capped: Starter 10, Growth 20, Scale 50).

Headers

NameValueRequired
AuthorizationBearer YOUR_API_KEYyes

Response fields

FieldTypeDescription
data[]arrayInvestor id, slug, name, deal_count.
paginationobjectcount, limit, offset, has_more.
filters_appliedobjectApplied query and date filters.

Error responses

StatusCodeDescription
401unauthorizedMissing or invalid API key.
500internal_errorUnexpected server error.

Sample response

200 OK
{
  "data": [{ "id": "inv_100", "slug": "sequoia", "name": "Sequoia", "deal_count": 104 }],
  "pagination": { "count": 1, "limit": 10, "offset": 0, "has_more": false }
}