1. Overview
The Fundraise Activity API gives you programmatic access to Wokelo’s curated database of funding rounds and investment events for a given report. Each record surfaces the full round context: which company raised, at what stage, from which investors, on what date, what the company does, and relevant news coverage — all structured and ready to query. This is a synchronous API — submitting a request returns the complete result set immediately. No polling is required. Each funding record in the result set includes:- Round metadata — funding date, stage, disclosed amount, and lead and other investors
- Company firmographics — headquarters, founding year, employee count, and operating geography
- Company business profile — product category, core offering description, and product catalog
- News context — curated coverage excerpts with source URLs for rounds with public reporting
- Deal origination and market intelligence — Track which investors are most active in a sector. Identify emerging companies attracting capital before they become widely known
- Investor profiling — Map which VCs, corporate strategists, and institutional funds are backing companies in a given product category or geography
- Competitive landscape analysis — Monitor funding velocity in your market. A cluster of seed rounds signals early-stage activity; a wave of Series B and C rounds signals rapid scaling
- Portfolio monitoring — Catch new funding events in categories you track. Filter by stage to surface only the events relevant to your thesis
- LP and fund research — Identify sector specialists and prolific lead investors by aggregating round-level data across a report
- Startup scouting — Surface pre-seed and seed companies in niche product categories before they appear on mainstream databases
This API is synchronous. A single POST request returns the complete funding round data immediately — no job polling required. See How Sync APIs work.
2. Quick Start
Step 1 — Submit the request3. Authentication
All requests must include a Bearer token in theAuthorization HTTP header. No other authentication method is supported.
4. Request Reference
Endpointreport_id is the only required parameter.
Full request example:
5. Response
Response structure
Funding round object fields
Each object in the records array represents a single funding event. A company with multiple rounds will appear once per round. Round identity
Investors
Company identity & firmographics
Company business profile
News
The
News field is unstructured text, not JSON. Parse it by splitting on newlines and identifying lines that start with http to extract source URLs separately from prose summaries.Funding Stage values
TheFunding Stage field uses the following standardised values:
Funding Amount units
TheFunding Amount ($M) field is labelled in millions but stored values are in raw USD. A round reported as “$12 million” is stored as 12000000.0. Always convert before displaying:
Notes on null values
Several fields are frequently null, and this is expected:Funding Amount ($M)— Many rounds are not publicly disclosed. Null means undisclosed, not zero.Lead Investor(s)— Null for rounds with no named lead, grants, debt rounds, and crowdfunding events.Other Investor(s)— Null when investor participation was not reported beyond the lead.Product CategoryandCore Offering— Null for companies where Wokelo’s enrichment pipeline did not find sufficient public information.News— Null when no news coverage was indexed for the event.
Multiple records per company
A single company can appear many times in the result set, once per funding event. For example,"hectre" has ten separate records across Seed, Convertible note, Grant, Series A, and Non-Equity Assistance rounds. Use the Permalink field to group all rounds for a given company:
6. Examples
Retrieving and filtering a full report
Retrieve all funding records in a report and filter to disclosed Series A rounds and above.Building a full funding history per company
Since each company can have multiple records, group byPermalink to reconstruct the complete financing timeline for each company.
Profiling the most active investors
Identify which investors appear most frequently across all rounds — useful for targeting warm introductions or understanding who controls the capital in a sector.Filtering by funding stage
Isolate grant and non-dilutive rounds to track government and foundation funding in a sector — distinct from venture activity.7. Error Handling
The API uses standard HTTP status codes. All error responses include a JSON body with adetail or message field.
Error response example:
8. Best Practices
UsePermalink as the company key — not Name
The same company can appear many times across different funding rounds. Always group by Permalink, not Name, to avoid creating duplicates when building company-level aggregations:
Lead Investor(s) and Other Investor(s) are arrays but may be null — not empty arrays — when no investor data was available. Guard before iterating:
Funding Amount ($M) unit quirk
Despite the field name suggesting millions, the stored values are raw USD. Always convert before displaying or aggregating:
News field as structured text
The News field is a multi-section string, not JSON. Each section contains a prose summary followed by a source URL. Parse it by splitting on newlines:
Funding Stage field mixes venture equity rounds with grants, debt, and non-equity assistance. When computing total capital raised or building investor lists, filter to the stage types relevant to your analysis:
9. Related APIs
M&A Activity
Retrieve structured deal data for a market — acquirer profiles, target details, deal amounts, and news context.
Market Map
Discover and map all companies competing in a specific market or product category.
Target Screening
Identify and score potential acquisition targets for a defined acquirer — AI-ranked with deal feasibility and synergy scores.
Buyer Screening
Identify and score potential acquirers for a target company — the inverse of Target Screening.
Company Deep Intelligence
Generate deep AI intelligence on any company — business model, financials, strategy, and funding history.
Company Instant Enrichment
Synchronously enrich firmographic and financial data for any company in the funding dataset.