GET /funding-round/details

Funding Round Details

Get detailed information about a specific Crunchbase funding round including investors, investment stage, funded organization, and press coverage.

Crunchbase Data API

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

1
GET /funding-round/details

Parameters

ParameterTypeRequiredDefaultDescription
idstringYesFunding round slug (e.g., dronesec-pre-seed--8135c503) or UUID
freshbooleanNofalseSkip cache and fetch fresh data (billed as non-cached request)
max_age_secondsintegerNoReturn fresh fetch if cached record is older than this many seconds
fieldsstringNoComma-separated allow-list of top-level fields to include

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
{
  "status": true,
  "request_id": "4389fafd-79d8-3d5e-19e6-b47b2a66",
  "data": {
    "name": "Pre Seed Round - DroneSec",
    "slug": "dronesec-pre-seed--8135c503",
    "uuid": "8135c503-d156-41b3-92d6-6985fadb676a",
    "type": "funding_round",
    "investment_type": "pre_seed",
    "investment_stage": "seed",
    "funded_organization": {
      "uuid": "e234cb6f-3ee7-48da-bb9c-a9115838b164",
      "slug": "dronesec",
      "name": "DroneSec",
      "type": "organization",
      "image": "https://images.crunchbase.com/image/upload/6cf997a3f97d4b11ace1dacb1d6d6280"
    },
    "num_investors": null,
    "num_partners": null,
    "investors": [],
    "lead_investors": [],
    "num_timeline_entries": 0,
    "recent_press": []
  },
  "_meta": {
    "is_cached": false,
    "cached_at": 1778020145.7982442,
    "cached_at_iso": "2026-05-05T22:29:05Z"
  },
  "request_params": {
    "fresh": "false",
    "id": "dronesec-pre-seed--8135c503"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request was successful
request_idstringUnique identifier for the request
data.namestringDisplay name of the funding round
data.slugstringURL slug identifier
data.uuidstringCrunchbase UUID of the funding round
data.typestringEntity type, always "funding_round"
data.investment_typestringType of funding (e.g., pre_seed, seed, series_a, debt_financing)
data.investment_stagestringBroader investment stage (e.g., seed, early_stage_venture)
data.funded_organizationobjectThe company that received funding
data.funded_organization.uuidstringOrganization UUID
data.funded_organization.slugstringOrganization slug — use in company-details
data.funded_organization.namestringOrganization name
data.funded_organization.typestringEntity type, always "organization"
data.funded_organization.imagestringURL to the organization’s logo
data.num_investorsinteger|nullTotal number of investors in this round
data.num_partnersinteger|nullNumber of partner investors
data.investorsarrayFull list of investors in the round
data.lead_investorsarrayLead investors only
data.num_timeline_entriesintegerNumber of timeline/press entries
data.recent_pressarrayRecent press references about this round
_meta.is_cachedbooleanWhether this response came from cache
_meta.cached_atfloatUnix timestamp of when data was cached
_meta.cached_at_isostringISO 8601 timestamp of cache time
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
26
27
28
import requests

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

params = {
    "id": "dronesec-pre-seed--8135c503",
    "fresh": "true"
}

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)
result = response.json()

if result["data"]:
    round_data = result["data"]
    print(f"Round: {round_data['name']}")
    print(f"Type: {round_data['investment_type']}")
    print(f"Stage: {round_data['investment_stage']}")
    print(f"Company: {round_data['funded_organization']['name']}")
    print(f"Investors: {round_data['num_investors']}")
    for investor in round_data["lead_investors"]:
        print(f"  Lead: {investor['name']}")
else:
    print(f"Error: {result['error']['message']}")
 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
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/funding-round/details";

const params = new URLSearchParams({
  id: "dronesec-pre-seed--8135c503",
  fresh: "true",
});

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 result = await response.json();

if (result.data) {
  const round = result.data;
  console.log(`Round: ${round.name}`);
  console.log(`Type: ${round.investment_type}`);
  console.log(`Stage: ${round.investment_stage}`);
  console.log(`Company: ${round.funded_organization.name}`);
  console.log(`Investors: ${round.num_investors}`);
  round.lead_investors.forEach((inv) => console.log(`  Lead: ${inv.name}`));
} else {
  console.log(`Error: ${result.error.message}`);
}
1
2
3
4
5
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/funding-round/details" \
  --data-urlencode "id=dronesec-pre-seed--8135c503" \
  --data-urlencode "fresh=true" \
  -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