Retrieve complete details for a specific funding round by its slug. Returns the funded organization, investment type and stage, full investor list, lead investors, and recent press coverage. Use this after discovering rounds via funding-round-search or company-financials.
HTTP Request
| |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | Funding round slug (e.g., dronesec-pre-seed--8135c503) or UUID |
fresh | boolean | No | false | Skip cache and fetch fresh data (billed as non-cached request) |
max_age_seconds | integer | No | — | Return fresh fetch if cached record is older than this many seconds |
fields | string | No | — | Comma-separated allow-list of top-level fields to include |
Response
Example Response
| |
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the request was successful |
request_id | string | Unique identifier for the request |
data.name | string | Display name of the funding round |
data.slug | string | URL slug identifier |
data.uuid | string | Crunchbase UUID of the funding round |
data.type | string | Entity type, always "funding_round" |
data.investment_type | string | Type of funding (e.g., pre_seed, seed, series_a, debt_financing) |
data.investment_stage | string | Broader investment stage (e.g., seed, early_stage_venture) |
data.funded_organization | object | The company that received funding |
data.funded_organization.uuid | string | Organization UUID |
data.funded_organization.slug | string | Organization slug — use in company-details |
data.funded_organization.name | string | Organization name |
data.funded_organization.type | string | Entity type, always "organization" |
data.funded_organization.image | string | URL to the organization’s logo |
data.num_investors | integer|null | Total number of investors in this round |
data.num_partners | integer|null | Number of partner investors |
data.investors | array | Full list of investors in the round |
data.lead_investors | array | Lead investors only |
data.num_timeline_entries | integer | Number of timeline/press entries |
data.recent_press | array | Recent press references about this round |
_meta.is_cached | boolean | Whether this response came from cache |
_meta.cached_at | float | Unix timestamp of when data was cached |
_meta.cached_at_iso | string | ISO 8601 timestamp of cache time |
request_params | object | Echo of the parameters sent in the request |
Code Examples
| |
| |
| |
Related Endpoints
- Funding Round Search — Search and filter funding rounds to find slugs
- Company Financials — View all funding activity for a specific company
- Investment Search — Search individual investments across all rounds