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.

Match investors

GET/POST/api/v1/match-investors

Rank likely investors for a founder raise using sector, stage, geography, lead preference, and recent investor activity. Costs 2 credits per returned match and requires an active trial, Pro, Growth, or Scale subscription.

Request - cURL
curl -s "https://latestrounds.com/api/v1/match-investors?sector=AI&stage=seed&geo=United%20States&needs_lead=true&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"
Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/match-investors", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    sector: "AI",
    stage: "seed",
    geo: "United States",
    needs_lead: true,
    limit: 10
  })
});
const json = await res.json();
Request - Python
import requests

resp = requests.post(
  "https://latestrounds.com/api/v1/match-investors",
  json={
    "sector": "AI",
    "stage": "seed",
    "geo": "United States",
    "needs_lead": True,
    "limit": 10,
  },
  headers={"Authorization": "Bearer YOUR_API_KEY"},
  timeout=30,
)
print(resp.json())

Path parameters

No fields.

Query parameters

NameTypeRequiredDescription
sectorstringyesFounder company sector, e.g. AI, FinTech, Climate.
stageenumyespre_seed, seed, series_a, series_b, series_c, or growth.
geo, countrystringyesTarget geography such as United States, Europe, SEA, or a country.
needs_leadbooleannoRank lead-investor capacity more heavily.
limitnumbernoNumber of matches to return, 1-24.

Headers

NameValueRequired
AuthorizationBearer YOUR_API_KEYyes
Content-Typeapplication/jsonPOST only

Response fields

FieldTypeDescription
matches[]arrayRanked investors with score, band, activity line, recent companies, and locked fields.
countnumberTotal candidate investors matching the broad criteria.
evaluatednumberCandidate profiles deep-scored.
meta.creditsobjectCredits charged and remaining balance.

Error responses

StatusCodeDescription
400invalid_parameterMissing or invalid sector, stage, or geo.
401unauthorizedMissing or invalid API key.
403plan_restrictedInvestor matching requires an active trial, Pro, Growth, or Scale subscription.
429quota_exceededMonthly credit limit exceeded.

Sample response

200 OK
{
  "ok": true,
  "count": 42,
  "scored": 10,
  "matches": [{
    "name": "Example Ventures",
    "slug": "example-ventures",
    "score": 82,
    "band": "Strong fit",
    "deploying_now": true,
    "activity_line": "Led Acme AI's round 2 months ago - 3 of 5 matching checks as lead."
  }],
  "meta": { "credits": { "charged": 2, "remaining": 1998, "period": "2026-08" } }
}