GET /event/details

Event Details

Get full Crunchbase event details including speakers, exhibitors, sponsors, organizers, and related press coverage.

Crunchbase Data API

Retrieve comprehensive details for a specific Crunchbase event by its slug. Returns event metadata (dates, description, URLs), participant lists (speakers, exhibitors, sponsors, contestants), associated hubs, and recent press coverage.

HTTP Request

1
GET /event/details

Parameters

ParameterTypeRequiredDefaultDescription
idstringYesEvent slug (e.g., techcrunch-disrupt-2025, un-blockchain-week-45dc) 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
  "status": true,
  "request_id": "c51f1b68-21dc-e14f-84b6-4feba8af",
  "data": {
    "name": "UN Blockchain Week",
    "slug": "un-blockchain-week-45dc",
    "uuid": "ebce675e-0d00-452d-bded-3f3a6b3b45dc",
    "image": "https://images.crunchbase.com/image/upload/1524fd925b82467296eb989542a567be",
    "type": "event",
    "short_description": "UN Blockchain Week is an annual conference series that facilitates dialogue between technology innovators and international policy leaders.",
    "description": "UN Blockchain Week 2026 hosts summits, workshops, and roundtables focusing on the integration of blockchain, artificial intelligence, and decentralized infrastructure...",
    "starts_on": "2026-09-10",
    "ends_on": "2026-09-19",
    "event_types": ["conference", "festival"],
    "event_url": "https://UNBlockchainWeek.com",
    "registration_url": "https://lu.ma/UNBlockchainWeek",
    "categories": [],
    "organizers": [],
    "location": [],
    "num_speakers": 15,
    "num_exhibitors": null,
    "num_contestants": null,
    "num_sponsors": 3,
    "speakers": [
      {
        "uuid": "44864235-09cb-203b-eb1f-96330932058f",
        "slug": "ben-goertzel",
        "name": "Ben Goertzel",
        "type": "person",
        "image": "https://images.crunchbase.com/image/upload/v1444753401/mgexhi5jax5ccoiyfzbe.jpg",
        "short_description": null,
        "primary_job_title": "CEO",
        "primary_organization": {
          "uuid": "020f9010-65af-4273-9fca-5da951f4c875",
          "slug": "singularitynet",
          "name": "SingularityNET",
          "type": "organization",
          "image": "https://images.crunchbase.com/image/upload/uaiw6b7j69orvgr9mp1e"
        }
      }
      // ... more items
    ],
    "exhibitors": [],
    "contestants": [],
    "sponsors": [
      {
        "uuid": "c68b272f-6474-46fe-9242-24135c4be03b",
        "slug": "bruce-porter-jr",
        "name": "Bruce Porter Jr",
        "type": "person",
        "image": "https://images.crunchbase.com/image/upload/myoeoqlym140kfou2qxw",
        "short_description": "Bruce Porter Jr. is an early Bitcoin investor...",
        "primary_job_title": "Chairman & CEO",
        "primary_organization": {
          "uuid": "44c056c8-4229-47a2-b992-cb7018740b2c",
          "slug": "globalboost",
          "name": "GlobalBoost",
          "type": "organization",
          "image": "https://images.crunchbase.com/image/upload/q3nwnirjgpwvpndvtjbv"
        }
      }
      // ... more items
    ],
    "hubs": [
      {
        "uuid": "d7d166d2-bce8-4b17-94bb-ef89beb83c72",
        "slug": "companies-fewer-than-1000-employees",
        "name": "Companies With Fewer Than 1000 Employees (Top 10K)",
        "image": "https://images.crunchbase.com/image/upload/radxv99bd8jwiuqwxt95",
        "rank_hub": 100
      }
      // ... more items
    ],
    "num_timeline_entries": 2,
    "recent_press": [
      {
        "title": "UN Blockchain Week 2026 Returns to New York City...",
        "url": "https://www.openpr.com/news/4489495/un-blockchain-week-2026-returns",
        "posted_on": "2026-04-27",
        "publisher": "openPR",
        "author": null,
        "thumbnail_url": null
      }
      // ... more items
    ]
  },
  "request_params": {
    "id": "un-blockchain-week-45dc",
    "fresh": "false"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request was successful
request_idstringUnique identifier for the request
data.namestringEvent display name
data.slugstringEvent slug identifier
data.uuidstringUnique identifier (UUID)
data.imagestring/nullURL to the event’s image
data.typestringEntity type (always "event")
data.short_descriptionstring/nullBrief one-line description
data.descriptionstring/nullFull event description
data.starts_onstringEvent start date in YYYY-MM-DD format
data.ends_onstringEvent end date in YYYY-MM-DD format
data.event_typesarrayEvent type tags (e.g., conference, festival, hackathon)
data.event_urlstring/nullOfficial event website URL
data.registration_urlstring/nullRegistration page URL
data.categoriesarrayIndustry categories for the event
data.organizersarrayEvent organizer entities
data.locationarrayEvent location (city, region, country)
data.num_speakersinteger/nullTotal number of speakers
data.num_exhibitorsinteger/nullTotal number of exhibitors
data.num_contestantsinteger/nullTotal number of contestants
data.num_sponsorsinteger/nullTotal number of sponsors
data.speakersarrayList of event speakers
data.speakers[].uuidstringPerson UUID
data.speakers[].slugstringPerson slug
data.speakers[].namestringPerson name
data.speakers[].typestringEntity type (always "person")
data.speakers[].imagestring/nullPhoto URL
data.speakers[].short_descriptionstring/nullBrief bio
data.speakers[].primary_job_titlestring/nullCurrent job title
data.speakers[].primary_organizationobject/nullCurrent employer
data.speakers[].primary_organization.uuidstringOrganization UUID
data.speakers[].primary_organization.slugstringOrganization slug
data.speakers[].primary_organization.namestringOrganization name
data.speakers[].primary_organization.typestringEntity type
data.speakers[].primary_organization.imagestringLogo URL
data.exhibitorsarrayList of exhibitors (same structure as speakers)
data.contestantsarrayList of contestants (same structure as speakers)
data.sponsorsarrayList of sponsors
data.sponsors[].uuidstringSponsor UUID
data.sponsors[].slugstringSponsor slug
data.sponsors[].namestringSponsor name
data.sponsors[].typestringEntity type (person or organization)
data.sponsors[].imagestring/nullPhoto/logo URL
data.sponsors[].short_descriptionstring/nullBrief description
data.sponsors[].primary_job_titlestring/nullJob title (if person)
data.sponsors[].primary_organizationobject/nullOrganization (if person)
data.hubsarrayHubs associated with the event
data.hubs[].uuidstringHub UUID
data.hubs[].slugstringHub slug
data.hubs[].namestringHub name
data.hubs[].imagestringHub image URL
data.hubs[].rank_hubintegerHub rank
data.num_timeline_entriesintegerNumber of timeline entries
data.recent_pressarrayRecent press mentions
data.recent_press[].titlestringArticle title
data.recent_press[].urlstringArticle URL
data.recent_press[].posted_onstringPublication date (YYYY-MM-DD)
data.recent_press[].publisherstring/nullPublisher name
data.recent_press[].authorstring/nullAuthor name
data.recent_press[].thumbnail_urlstring/nullThumbnail image URL
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
29
30
31
32
import requests

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

params = {
    "id": "techcrunch-disrupt-2025",
    "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"] is None:
    print(f"Error: {result['error']['message']}")
else:
    event = result["data"]
    print(f"Event: {event['name']}")
    print(f"Dates: {event['starts_on']} to {event['ends_on']}")
    print(f"Types: {', '.join(event['event_types'])}")
    print(f"Speakers: {event['num_speakers']}, Sponsors: {event['num_sponsors']}")

    print("\nSpeakers:")
    for speaker in event["speakers"]:
        title = speaker.get("primary_job_title", "N/A")
        org = speaker.get("primary_organization")
        org_name = org["name"] if org else "N/A"
        print(f"  {speaker['name']}{title} at {org_name}")
 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
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/event/details";

const params = new URLSearchParams({
  id: "techcrunch-disrupt-2025",
  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 === null) {
  console.error(`Error: ${result.error.message}`);
} else {
  const event = result.data;
  console.log(`Event: ${event.name}`);
  console.log(`Dates: ${event.starts_on} to ${event.ends_on}`);
  console.log(`Types: ${event.event_types.join(", ")}`);
  console.log(`Speakers: ${event.num_speakers}, Sponsors: ${event.num_sponsors}`);

  console.log("\nSpeakers:");
  event.speakers.forEach((speaker) => {
    const title = speaker.primary_job_title || "N/A";
    const orgName = speaker.primary_organization?.name || "N/A";
    console.log(`  ${speaker.name}${title} at ${orgName}`);
  });
}
1
2
3
4
5
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/event/details" \
  --data-urlencode "id=techcrunch-disrupt-2025" \
  --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