Identify Emerging Wealth Creators

Using Crunchbase's Advanced Financials

Goal: Identify Emerging Wealth Creators Using Crunchbase's Advanced Financials, to help your team identify high net worth opportunities and tailor outreach. Your team will be able to identify liquidity events that create high-net-worth individuals before your competition



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_idWhat this field doesoperator_id (these are the compatible operators per field)
funded_organization_identifierIdentifies the company receiving fundingblank;contains;eq;includes;not_contains;not_eq;not_includes;starts
investor_identifiersIdentifies the company/people contributing the fundingblank;includes;includes_all;not_includes;not_includes_all
announced_onFilters by the date the funding round was announcedbetween;blank;eq;gte;lte
investment_stageDescribes the stage of funding round or investment (early/late stage venture)blank;eq;includes;not_eq;not_includes
money_raisedFilters by the dollar amount raised in particular roundbetween;blank;eq;gt;gte;lt;lte;not_eq
funded_organization_locationIdentifies where the funded company is locatedblank;includes;includes_all;not_includes;not_includes_all
funded_organization_revenue_rangeFilters by the revenue range of the funded companyblank;eq;includes;not_eq;not_includes
funded_organization_categoriesFilters by industries that the funded company is inblank;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