example-data.com

tickets

tickets

Page 8 of 10.

May
22
Fri

National Bauch Festival

8:09 AM

Fort Bennett Pavilion

From EUR553.09

May
15
Fri

National Macejkovic Open

7:10 AM

West Jordanview Stadium

From CAD810.16

Jan
23
Sat

Ultimate Russel Concert

8:28 PM

Thompsonport Arena

From CAD186.71

Sep
29
Tue

Ultimate Heller Festival

9:58 PM

North Dorcas Pavilion

From USD803.11

Jul
4
Sat

World Kohler Summit

9:58 AM

East Alessia Theater

From AUD838.09

Feb
9
Mon

Annual Bogisich Open

12:52 AM

New Margiecester Auditorium

From EUR984.45

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/tickets?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = await res.json();
import type { Ticket, ListEnvelope } from "https://example-data.com/types/tickets.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tickets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Ticket>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tickets",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 169,
      "eventName": "National Bauch Festival",
      "venue": "Fort Bennett Pavilion",
      "eventAt": "2026-05-22T08:09:51.631Z",
      "type": "vip",
      "price": 553.09,
      "currency": "EUR",
      "sectionCode": "FLOOR",
      "seatCode": "U24",
      "isSold": true,
      "createdAt": "2026-03-21T08:09:51.631Z"
    },
    {
      "id": 170,
      "eventName": "National Macejkovic Open",
      "venue": "West Jordanview Stadium",
      "eventAt": "2026-05-15T07:10:13.802Z",
      "type": "general",
      "price": 810.16,
      "currency": "CAD",
      "sectionCode": "C1",
      "seatCode": null,
      "isSold": false,
      "createdAt": "2026-02-10T07:10:13.802Z"
    },
    {
      "id": 171,
      "eventName": "Ultimate Russel Concert",
      "venue": "Thompsonport Arena",
      "eventAt": "2027-01-23T20:28:57.526Z",
      "type": "reserved",
      "price": 186.71,
      "currency": "CAD",
      "sectionCode": "C1",
      "seatCode": "S36",
      "isSold": false,
      "createdAt": "2026-12-01T20:28:57.526Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=8",
    "next": "/api/v1/tickets?page=9",
    "prev": "/api/v1/tickets?page=7"
  }
}
Draftbit