Developers
ReferenceEvents

List events

List events, newest first. Filters: `sale_status` (not_started, active, ended), `updated_since`, `created_since`.

GET
/events

List events, newest first.

Filters: sale_status (not_started, active, ended), updated_since, created_since.

Authorization

http
AuthorizationBearer <token>

In: header

Query Parameters

sale_status?|

Value in

  • "not_started"
  • "active"
  • "ended"
  • null
limit?integer

Number of objects to return, 1 to 100.

Default25
starting_after?string

Cursor: the id of the last object of the previous page.

updated_since?string

Only objects updated at or after this ISO 8601 time.

Formatdate-time
created_since?string

Only objects created at or after this ISO 8601 time.

Formatdate-time

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/events"
{  "object": "list",  "url": "string",  "has_more": true,  "data": [    {      "id": "string",      "object": "event",      "name": "string",      "slug": "string",      "starts_at": "string",      "ends_at": "string",      "is_whole_day": true,      "sale_starts_at": "string",      "sale_ends_at": "string",      "sale_status": "not_started",      "shop_url": "string",      "location": {        "name": "string",        "address": "string",        "latitude": 0,        "longitude": 0      },      "website": "string",      "default_language": "string",      "available_languages": [        null      ],      "days": [        {          "id": "string",          "object": "event_day",          "date": "string",          "start_time": "string",          "end_time": "string",          "capacity": 0,          "is_active": true        }      ],      "created_at": "string",      "updated_at": "string"    }  ]}