Replacing the funding rounds endpoint
The legacy/api/v1/funding-rounds/ endpoint covered only one kind of activity. Events supersede it with a unified model that handles the full range of things that matter to investors tracking private companies:
If you’re using the funding rounds endpoint today, migrate to events and filter by
types=funding-round. You’ll get richer data and access to the other event types in the same response.
Event envelope
Every event, regardless of type, shares a common envelope:Data payloads by type
Thedata field contains fields specific to each event type.
Funding rounds include round_type, amount_raised, valuation, announced_date, equities (a list of preferred share classes issued), and is_extension — a boolean that identifies whether the round is an extension of a prior close rather than a new series.
Secondary transactions include transaction_type (e.g. tender_offer), transaction_amount, valuation, price_per_share, announced_date, and closing_date. When a transaction is closed but only one date is known, closing_date is set equal to announced_date.
Company milestones and corporate actions include an effective_date alongside the announcement date, which matters for events like stock splits where the announcement and the effective date differ.
Citations
Events support optional citations via theinclude_citations=true parameter. When enabled, each event includes a citations object with the sources backing the event data — article links, headlines, quotes, and publication names. This is useful when you want to surface the provenance of a funding round or transaction to end users.