Identify Emerging Wealth Creators
Using Crunchbase's Advanced Financials
Persona: Wealth & Asset Managers
Use Case: Identify Emerging Wealth Creators Using Crunchbase's Advanced Financials
Primary API(s): Search (Organizations)
Endpoint
https://api.crunchbase.com/v4/data/searches/funding_rounds
API Reference & Documentation
Query
This query identifies companies that have raised at least $50M since January 1, 2024, in funding rounds backed by Accel or Y Combinator, it hightlights recently funded organizations with strong investor validation and significant capital momentum.
Key Entities
| field_id | What this field does | operator_id (these are the compatible operators per field) |
|---|---|---|
| funded_organization_identifier | Identifies the company receiving funding | blank;contains;eq;includes;not_contains;not_eq;not_includes;starts |
| investor_identifiers | Identifies the company/people contributing the funding | blank;includes;includes_all;not_includes;not_includes_all |
| announced_on | Filters by the date the funding round was announced | between;blank;eq;gte;lte |
| investment_stage | Describes the stage of funding round or investment (early/late stage venture) | blank;eq;includes;not_eq;not_includes |
| money_raised | Filters by the dollar amount raised in particular round | between;blank;eq;gt;gte;lt;lte;not_eq |
| funded_organization_location | Identifies where the funded company is located | blank;includes;includes_all;not_includes;not_includes_all |
| funded_organization_revenue_range | Filters by the revenue range of the funded company | blank;eq;includes;not_eq;not_includes |
| funded_organization_categories | Filters by industries that the funded company is in | blank;includes;includes_all;not_includes;not_includes_all |
curl --request POST \
--url https://api.crunchbase.com/v4/data/searches/funding_rounds \
--header 'X-cb-user-key: dac9eef1292e432a8a94XXXXXXXXXXXX' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"field_ids": [
"funded_organization_identifier",
"investor_identifiers",
"announced_on",
"investment_stage",
"money_raised"
],
"query": [
{
"field_id": "investor_identifiers",
"operator_id": "includes",
"type": "predicate",
"values": ["Accel", "Y Combinator"]
},
{
"field_id": "money_raised",
"operator_id": "gte",
"type": "predicate",
"values": ["50000000"]
},
{
"field_id": "announced_on",
"operator_id": "gte",
"type": "predicate",
"values": ["2024-01-01"]
}
]
}
Response
This response returns funding rounds matching the filter criteria, and each item returned represents an individual funding event rather than a company. The example shown is a $330M Series B funding round for Lovable, announced on December 18, 2025, which met our investor, amount, and date criteria.
{
"count": 78,
"entities": [
{
"uuid": "9bceaf48-6381-489f-89a4-d5e5708fe80d",
"properties": {
"identifier": {
"permalink": "lovable-803a-series-b--9bceaf48",
"image_id": "0b69ba62755441dda73fd1a95d128345",
"uuid": "9bceaf48-6381-489f-89a4-d5e5708fe80d",
"entity_def_id": "funding_round",
"value": "Series B - Lovable"
},
"announced_on": "2025-12-18",
"money_raised": {
"currency": "USD",
"value": 330000000,
"value_usd": 330000000
},
"investment_stage": "early_stage_venture",
"funded_organization_identifier": {
"permalink": "lovable-803a",
"role": "investee",
"image_id": "0b69ba62755441dda73fd1a95d128345",
"uuid": "10843a45-04a6-4668-a427-c67f4095803a",
"entity_def_id": "organization",
"value": "Lovable"
}
}
}
]
}
Outcome
In a single API call, we’ve identified high-potential investment opportunities from millions of companies This shows how you can accelerate portfolio discovery and optimize both current and future wealth investments
Updated 4 months ago

