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.

Getting started

LatestRounds is a GTM trigger layer — funding closes, your stack reacts. Use the REST API, MCP server, or webhook polling to pipe enriched funding data into your CRM, enrichment tool, or AI assistant.

1

Get your API key

Generate a key from your API dashboard. Every request requires it in the Authorization header.

Authorization: Bearer YOUR_API_KEY

Keep your key server-side only. Never expose it in client-side code or public repos.

2

Make your first request

Fetch the latest seed rounds in the US. Each record returned costs 1 credit.

cURL
curl -s "https://latestrounds.com/api/v1/funding/latest?limit=5&country=US&stage=seed" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response shape

  • data[] — array of funding rounds with embedded company + investor data
  • pagination — count, limit, offset, has_more
  • meta.credits — credits charged and balance after this call
3

Connect the MCP server (optional)

Add this to your .mcp.json to query funding data in natural language inside Claude, Cursor, or any MCP-compatible AI client. No SQL, no endpoints to memorize.

.mcp.json
{
  "mcpServers": {
    "latestrounds": {
      "command": "npx",
      "args": ["-y", "latestrounds-mcp@latest", "--api-key", "YOUR_API_KEY"]
    }
  }
}

MCP calls consume the same credits as direct API calls. Full MCP setup guide →

4

Wire up your GTM trigger

Poll the funding feed on a daily schedule, filter against your ICP, and push matches into your CRM or outreach tool. A round closes → your sequence fires — all within hours.

JavaScript — daily trigger pattern
// Poll daily — new seed rounds in the US
const res = await fetch("https://latestrounds.com/api/v1/funding/latest?stage=seed&country=US&from=TODAY", {
  headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const { data } = await res.json();

// Filter against your ICP, push matches to your CRM
for (const round of data) {
  if (matchesICP(round)) await pushToCRM(round);
}

Webhooks & automation guide →

Credit quick reference

Every API and MCP call consumes credits. Full credits reference →

EndpointCredits
Funding feed1 per record
Hiring signals / Similar companies2 each
Investor profile / Tech stack / Founders3 each
Company profile / Investor portfolio5 each
Filters, categories (metadata)Free