Funding

Detect a company's most recent funding round and public/IPO status from just a domain, with investors and cited source URLs.

What it answers

The Funding signal summarises a company's most recent funding and its public status. It reports the latest primary equity round — never a secondary sale, tender offer, or debt event — and flags whether the company has gone public. A completed IPO, direct listing, or SPAC merger sets isPublic to true and latestRound to IPO, overriding earlier private rounds.

Answers favour reliability over completeness: the AI confirms that sources belong to the company at the domain you passed (not a similarly-named company) and returns the one to three most recent events rather than a full history.

Key: funding · Scope: company · Cost: 2 credits

Request

Provide only a domain.

curl -X POST https://api.saber.app/v1/signals/sync/funding \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "stripe.com"
  }'

For webhook delivery, call POST /v1/signals/funding (async) with a webhookUrl instead.

FieldTypeRequiredDescription
domainstringyesCompany domain to research.
webhookUrlstringnoWhere to deliver the completed result. Intended for the async endpoint; if supplied on sync, the webhook still fires in addition to the response.
forceRefreshbooleannoBypass the cache and force a fresh run.

Response

answer.jsonSchema conforms to the funding answer schema:

{
  "hasFundingEvent": true,
  "isPublic": false,
  "latestRound": "Series I",
  "latestEvents": [
    {
      "eventType": "funding_round",
      "round": "Series I",
      "amount": 6500000000,
      "currency": "USD",
      "investors": ["Andreessen Horowitz", "Sequoia Capital", "General Catalyst"],
      "announcedAt": "2023-03-15",
      "sourceUrls": ["https://stripe.com/newsroom/news/series-i"]
    }
  ]
}
FieldTypeDescription
hasFundingEventbooleanTrue if any known funding event exists.
isPublicbooleanTrue if the company has gone public (IPO / direct listing / SPAC).
latestRoundstringMost recent primary equity round or stage (e.g. Series B, IPO, Unknown). Never a secondary, tender, or debt event.
latestEventsarrayThe latest one to three events, most recent first. Each carries eventType, optional amount/currency, round, investors, announcedAt, and sourceUrls.

hasFundingEvent and isPublic are always present; the other fields appear when the evidence supports them.

Evidence

Every reported event is corroborated against public sources (company newsroom or IR pages, regulatory filings, major business press), and the URLs are returned in sourceUrls and in the signal's top-level sources. The signal does not fetch paywalled database pages, and an amount is omitted rather than guessed when it isn't disclosed.

On this page