Core resources

Tickets

Tickets represent the different types of admission available for an event.

List tickets

GET /v1/events/:event_id/tickets

Returns all ticket types for a given event.

Response

{
  "data": [
    {
      "id": "tkt_001",
      "event_id": "evt_abc123",
      "name": "General Admission",
      "price": 29900,
      "currency": "SEK",
      "quantity_total": 500,
      "quantity_sold": 123,
      "status": "on_sale",
      "sale_starts_at": "2026-02-01T00:00:00Z",
      "sale_ends_at": "2026-06-15T16:00:00Z"
    }
  ]
}

Prices are in minor units

All prices are expressed in the smallest currency unit. For SEK, that means ore (1 SEK = 100 ore). So 29900 means 299.00 SEK.

Create a ticket type

POST /v1/events/:event_id/tickets

Request body

{
  "name": "VIP",
  "price": 59900,
  "currency": "SEK",
  "quantity_total": 100,
  "sale_starts_at": "2026-02-01T00:00:00Z",
  "sale_ends_at": "2026-06-15T16:00:00Z"
}

Update a ticket type

PATCH /v1/events/:event_id/tickets/:id

Delete a ticket type

DELETE /v1/events/:event_id/tickets/:id
Previous
Events