Skip to main content
GET
/
events
/
{event_id}
/
tickets
List tickets
curl --request GET \
  --url https://api.tickable.io/events/{event_id}/tickets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "c3d4e5f6-7890-4a1b-2c3d-4e5f6a7b8c9d",
      "scannable_code": "c3d4e5f6-7890-4a1b-2c3d-4e5f6a7b8c9d",
      "event_timeslot_id": "d4e5f6a7-8901-4b2c-3d4e-5f6a7b8c9d0e",
      "ticket_type_id": "b2c4e6a8-1234-4f5a-9c8d-0e1f2a3b4c5d",
      "order_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "owner_name": "Jane Doe",
      "owner_email": "jane@example.com",
      "seat": "A12",
      "sequence": 1,
      "scanned_at": "2026-06-15T14:30:00Z",
      "status": "valid",
      "cancelled_at": null,
      "swappable": true,
      "created_at": "2026-06-15T14:25:00Z"
    }
  ],
  "pagination": {
    "total": 142,
    "limit": 25,
    "offset": 0,
    "has_more": true
  }
}

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

event_id
string<uuid>
required

Event ID

Example:

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

Query Parameters

limit
integer

Max results per page (default 25, max 100)

Required range: 1 <= x <= 100
Example:

25

offset
integer | null

Number of results to skip

Required range: x >= 0
Example:

0

sort
string

Sort field and direction, e.g. created_at:desc

Example:

"created_at:desc"

order_id
string<uuid>

Filter by order ID

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

Response

Paginated list of tickets

data
object[]
required
pagination
object
required