example-data.com

tickets

tickets

Page 5 of 10.

Nov
11
Wed

Grand Konopelski Festival

9:34 AM

North Queenie Auditorium

From GBP680.68

Jan
30
Sat

International Beahan Show

3:25 AM

Theresaville Pavilion

From MXN269.53

Aug
18
Mon

Annual Goodwin Show

9:34 AM

Dawnhaven Pavilion

From EUR12.05

Nov
18
Tue

Annual Batz Gala

12:34 PM

South Whittier Theater

From EUR21.26

Nov
8
Sun

Annual Bartoletti Open

12:15 AM

Rodrickborough Stadium

From MXN733.77

Sep
7
Mon

World Kilback Gala

12:29 PM

Port Anthony Stadium

From CAD938.26

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": 97,
      "eventName": "Grand Konopelski Festival",
      "venue": "North Queenie Auditorium",
      "eventAt": "2026-11-11T09:34:16.252Z",
      "type": "general",
      "price": 680.68,
      "currency": "GBP",
      "sectionCode": "A2",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-06-29T09:34:16.252Z"
    },
    {
      "id": 98,
      "eventName": "International Beahan Show",
      "venue": "Theresaville Pavilion",
      "eventAt": "2027-01-30T03:25:02.017Z",
      "type": "standing",
      "price": 269.53,
      "currency": "MXN",
      "sectionCode": "B1",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-10-11T03:25:02.017Z"
    },
    {
      "id": 99,
      "eventName": "Annual Goodwin Show",
      "venue": "Dawnhaven Pavilion",
      "eventAt": "2025-08-18T09:34:56.518Z",
      "type": "general",
      "price": 12.05,
      "currency": "EUR",
      "sectionCode": "GA",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2025-05-12T09:34:56.518Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=5",
    "next": "/api/v1/tickets?page=6",
    "prev": "/api/v1/tickets?page=4"
  }
}
Draftbit