The same shape on every endpoint
success, data, pagination, and meta in identical positions on every response. Write one parser and reuse it across funding, acquisitions, exec moves, companies, and investors.
Six endpoints, one response shape, cursor pagination. Query funding rounds, acquisitions, and executive moves — already deduplicated and resolved to canonical entities. Drop it in without writing a parser.
50 free credits · no credit card required
const res = await fetch(
"https://api.datahyena.com/v1/funding-events?limit=1",
{ headers: { "X-API-Key": process.env.DATAHYENA_KEY } }
);
const { data } = await res.json();Click to run a live sample →
The hard parts — sources, deduplication, entity resolution — are already done. You get a predictable, typed feed behind a single key.
success, data, pagination, and meta in identical positions on every response. Write one parser and reuse it across funding, acquisitions, exec moves, companies, and investors.
Every record is resolved to a canonical company and investors and deduplicated across every outlet that reported it, with the source list attached. No scraping, no cleanup on your side.
Stable cursor pagination and one credit per record returned, reported in the meta of every response. No surprise bills, no offset drift on a live feed.
Every endpoint is a GET with the same filters, the same cursor pagination, and the same
envelope. Authenticate with a single X-API-Key header.
GET /v1/funding-events New funding rounds — company, investors, amount, round. Filter by round, amount, country, industry, vertical (AI, fintech, and more), employee size, or date.
GET /v1/acquisitions Mergers and acquisitions with acquirer, target, deal value, and payment type.
GET /v1/exec-moves Executive appointments, promotions, and departures with person, company, role, and seniority.
GET /v1/companies Canonical company records. Search by name, domain, country, industry, employee bucket, or founded year.
GET /v1/investors Canonical investor records. Search by name, type, country, or domain.
GET /v1/companies/timeline One company's full timeline: funding, acquisitions, and executive moves, plus firmographics and investors. Resolve by id, domain, name, or LinkedIn URL.
Pull fresh rounds for accounts you track and write amount, investors, and round straight onto the company record.
Poll for new Series A/B in your ICP each morning and route them into sequences before the rest of the market notices.
Back an internal market-map or portfolio monitor with a feed that is already deduplicated and entity-resolved.
The essentials before your first call.
Create a key, claim your 50 free credits, and make your first request today. No sales call, no credit card.
50 free credits · no credit card