Search Crunchbase events — conferences, hackathons, meetups, and other industry gatherings. Returns basic event information including dates, locations, and associated categories. Use the event slug from results to fetch full details via the event-details endpoint.
HTTP Request
| |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
starts_on_after | string | No | — | Events starting on or after this ISO date (YYYY-MM-DD) |
starts_on_before | string | No | — | Events starting on or before this ISO date (YYYY-MM-DD) |
location | string | No | — | Event venue — city/region/country slug, UUID, or name |
category | string | No | — | Limit to events in this category. Name, slug, or UUID |
per_page | integer | No | 5 | Results per page (max 15) |
order_by | string | No | starts_on | Sort field. starts_on = event start date |
sort | string | No | desc | desc for newest first |
page | integer | No | 1 | Page number (sequential, 1-indexed) |
Response
Example Response
| |
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the request was successful |
request_id | string | Unique identifier for the request |
data.total | integer | Total number of events matching the query |
data.page | integer | Current page number |
data.has_next_page | boolean | Whether more pages of results are available |
data.results | array | List of event objects |
data.results[].name | string | Event display name |
data.results[].slug | string | Event slug — use as id in event-details |
data.results[].uuid | string | Unique identifier (UUID) |
data.results[].image | string/null | URL to the event’s image |
data.results[].type | string | Entity type (always "event") |
data.results[].short_description | string/null | Brief event description |
data.results[].starts_on | string | Event start date in YYYY-MM-DD format |
data.results[].ends_on | string | Event end date in YYYY-MM-DD format |
data.results[].rank_event | integer/null | Event ranking (lower = more popular) |
data.results[].location | array | Event location (city, region, country) |
data.results[].location[].name | string | Location name |
data.results[].location[].slug | string | Location slug |
data.results[].location[].uuid | string | Location UUID |
data.results[].location[].location_type | string | Type: city, region, or country |
data.results[].categories | array | Industry categories for the event |
data.results[].categories[].name | string | Category display name |
data.results[].categories[].slug | string | Category slug |
data.results[].categories[].uuid | string | Category UUID |
data.results[].category_groups | array | Category group tags |
data.resolved_filters | object | Resolved filter values applied to the query |
request_params | object | Echo of the parameters sent in the request |
Code Examples
| |
| |
| |
Related Endpoints
- Event Details — Get full details for a specific event
- Event Appearance Search — Search event appearances (speakers, sponsors)
- Company Search — Search companies that participate in events