GET /funding-round/search

Funding Round Search

Search Crunchbase funding rounds by investment type with pagination and sorting. Returns round names, slugs, organizations, and lead investors.

Crunchbase Data API

Search across all funding rounds in Crunchbase. Filter by investment type (seed, series_a, venture, etc.), sort by announcement date or rank, and paginate through results. Each result includes the funded organization and lead investors — useful for building deal-flow pipelines and market analysis tools.

HTTP Request

1
GET /funding-round/search

Parameters

ParameterTypeRequiredDefaultDescription
funded_organizationstringNoSlug, UUID, or name of the company that raised the round
investorstringNoSlug, UUID, or name of a participating investor (any role)
lead_investorstringNoSlug, UUID, or name of the lead investor (stricter than investor)
categorystringNoLimit to rounds where the funded company is in this category
investment_typestringNoanyRound type: any, pre_seed, seed, angel, series_aseries_j, series_unknown, private_equity, debt_financing, grant, corporate_round, convertible_note, initial_coin_offering, non_equity_assistance, post_ipo_debt, post_ipo_equity, post_ipo_secondary, product_crowdfunding, secondary_market, equity_crowdfunding, ipo, undisclosed
announced_on_afterstringNoOnly rounds announced on or after this date (YYYY-MM-DD)
announced_on_beforestringNoOnly rounds announced on or before this date (YYYY-MM-DD)
min_money_raisedintegerNoLower bound on round size in USD
max_money_raisedintegerNoUpper bound on round size in USD
min_investorsintegerNoOnly rounds with at least this many investors
max_investorsintegerNoOnly rounds with at most this many investors
rank_maxintegerNoOnly rounds ranked this good or better
rank_minintegerNoOnly rounds ranked this or worse
per_pageintegerNo5Results per page (max 15)
order_bystringNoannounced_onSort field
sortstringNodescdesc for newest first
pageintegerNo1Page number (sequential, 1-indexed)

Response

Example Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "status": true,
  "request_id": "3b2b14e5-0435-7921-05da-ff8e0ef6",
  "data": {
    "total": 791862,
    "page": 1,
    "has_next_page": false,
    "results": [
      {
        "name": "Pre Seed Round - DroneSec",
        "slug": "dronesec-pre-seed--8135c503",
        "uuid": "8135c503-d156-41b3-92d6-6985fadb676a",
        "image": "https://images.crunchbase.com/image/upload/6cf997a3f97d4b11ace1dacb1d6d6280",
        "type": "funding_round",
        "investment_type": "pre_seed",
        "num_investors": null,
        "funded_organization": {
          "uuid": "e234cb6f-3ee7-48da-bb9c-a9115838b164",
          "slug": "dronesec",
          "name": "DroneSec",
          "type": "organization",
          "image": "https://images.crunchbase.com/image/upload/6cf997a3f97d4b11ace1dacb1d6d6280"
        },
        "lead_investors": [],
        "rank_funding_round": 113935,
        "funded_organization_diversity_spotlights": []
      },
      {
        "name": "Debt Financing - AgroMatch",
        "slug": "agromatch-debt-financing--d1f7c570",
        "uuid": "d1f7c570-d48f-4586-ae2a-9519bb319a6a",
        "image": "https://images.crunchbase.com/image/upload/f0h20up88is1xyvk9c3z",
        "type": "funding_round",
        "investment_type": "debt_financing",
        "num_investors": 1,
        "funded_organization": {
          "uuid": "01bb2bf4-5924-4577-8348-aa7faa18e079",
          "slug": "agromatch",
          "name": "AgroMatch",
          "type": "organization",
          "image": "https://images.crunchbase.com/image/upload/f0h20up88is1xyvk9c3z"
        },
        "lead_investors": [],
        "rank_funding_round": 716512,
        "funded_organization_diversity_spotlights": []
      }
      // ... more items
    ],
    "resolved_filters": {}
  },
  "request_params": {
    "sort": "asc",
    "order_by": "announced_on",
    "page": "1",
    "per_page": "2"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request was successful
request_idstringUnique identifier for the request
data.totalintegerTotal number of funding rounds matching the query
data.pageintegerCurrent page number
data.has_next_pagebooleanWhether more pages are available
data.resultsarrayList of funding round results
data.results[].namestringDisplay name of the funding round (e.g., “Series A - CompanyName”)
data.results[].slugstringURL slug — use this as the id param in funding-round-details
data.results[].uuidstringCrunchbase UUID of the funding round
data.results[].imagestringURL to the funded organization’s logo
data.results[].typestringEntity type, always "funding_round"
data.results[].investment_typestringType of investment (e.g., pre_seed, seed, series_a, debt_financing)
data.results[].num_investorsinteger|nullNumber of investors in the round
data.results[].funded_organizationobjectThe company that received funding
data.results[].funded_organization.uuidstringOrganization UUID
data.results[].funded_organization.slugstringOrganization slug
data.results[].funded_organization.namestringOrganization name
data.results[].funded_organization.typestringEntity type, always "organization"
data.results[].funded_organization.imagestringURL to the organization’s logo
data.results[].lead_investorsarrayList of lead investors in the round
data.results[].rank_funding_roundintegerCrunchbase rank for this funding round
data.results[].funded_organization_diversity_spotlightsarrayDiversity spotlight tags for the funded organization
data.resolved_filtersobjectFilters that were applied to the query
request_paramsobjectEcho of the parameters sent in the request

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import requests

url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/funding-round/search"

params = {
    "investment_type": "series_a",
    "per_page": "25",
    "order_by": "announced_on",
    "sort": "desc",
    "page": "1"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

print(f"Total Series A rounds: {data['total']}")
for round in data["results"]:
    org = round["funded_organization"]["name"]
    investors = len(round["lead_investors"])
    print(f"  {round['name']} | Lead investors: {investors}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/funding-round/search";

const params = new URLSearchParams({
  investment_type: "series_a",
  per_page: "25",
  order_by: "announced_on",
  sort: "desc",
  page: "1",
});

const response = await fetch(`${url}?${params}`, {
  method: "GET",
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com",
  },
});

const { data } = await response.json();

console.log(`Total Series A rounds: ${data.total}`);
data.results.forEach((round) => {
  const org = round.funded_organization.name;
  console.log(`  ${round.name} | Lead investors: ${round.lead_investors.length}`);
});
1
2
3
4
5
6
7
8
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/funding-round/search" \
  --data-urlencode "investment_type=series_a" \
  --data-urlencode "per_page=25" \
  --data-urlencode "order_by=announced_on" \
  --data-urlencode "sort=desc" \
  --data-urlencode "page=1" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: crunchbase-extractor-full-api3.p.rapidapi.com"
Start building today

Get your API key and make your first request in under a minute.

Get Your API Key on RapidAPI