Skip to main content
GET
/
events
/
{id}
Get event
curl --request GET \
  --url https://api.tickable.io/events/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "Summer Festival 2026",
  "description": "Annual summer music festival",
  "slug": "summer-festival-2026",
  "location": "Vondelpark",
  "address": "Vondelpark 1, Amsterdam",
  "website": "https://summerfestival.nl",
  "image_url": "https://cdn.tickable.nl/events/header.jpg",
  "is_public": true,
  "sales_starts_at": "2026-05-01T00:00:00Z",
  "created_at": "2026-04-01T12:00:00Z",
  "ticket_types": [
    {
      "id": "b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d",
      "name": "Early Bird",
      "description": "Limited early bird tickets",
      "price": 25,
      "min_per_order": 1,
      "max_per_order": 10,
      "total_available": 500,
      "visibility": "visible"
    }
  ],
  "timeslot": {
    "id": "d4e5f6a7-8901-4b2c-3d4e-5f6a7b8c9d0e",
    "title": "Morning Session",
    "starts_at": "2026-06-15T10:00:00Z",
    "ends_at": "2026-06-15T12:00:00Z",
    "total_available": 200,
    "ticket_type_ids": [
      "b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d"
    ]
  }
}

Authorizations

Authorization
string
header
required

Pass as Authorization: Bearer {token}. Accepts either an OAuth2 JWT access token or an API key (tk_live_...) created from the Tickable dashboard.

Path Parameters

id
string<uuid>
required

Event ID

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Event found

id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

title
string
required
Example:

"Summer Festival 2026"

description
string | null
required
Example:

"Annual summer music festival"

slug
string | null
required
Example:

"summer-festival-2026"

location
string | null
required
Example:

"Vondelpark"

address
string | null
required
Example:

"Vondelpark 1, Amsterdam"

website
string | null
required
Example:

"https://summerfestival.nl"

image_url
string | null
required
Example:

"https://cdn.tickable.nl/events/header.jpg"

is_public
boolean
required
Example:

true

sales_starts_at
string | null
required
Example:

"2026-05-01T00:00:00Z"

created_at
string
required
Example:

"2026-04-01T12:00:00Z"

ticket_types
object[]
required
timeslot
object
required

Included when the event has exactly one timeslot