example-data.com

tickets

tickets

Page 6 of 10.

Nov
4
Wed

National Wyman Show

9:30 AM

Pricecester Concert Hall

From CAD835.34

May
13
Wed

The Walker Finals

12:16 PM

Hauckside Concert Hall

From JPY298.36

Jul
21
Tue

National Beier Championship

12:44 PM

Ezraview Theater

From JPY609.68

Sep
8
Tue

International Batz Finals

4:23 AM

Marquisberg Stadium

From EUR28.68

Mar
10
Tue

Classic Herzog Finals

11:13 PM

Herzogfield Amphitheater

From AUD742.16

Jul
7
Mon

International Emmerich Finals

4:31 AM

Lake Lorenz Theater

From JPY51.76

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": 121,
      "eventName": "National Wyman Show",
      "venue": "Pricecester Concert Hall",
      "eventAt": "2026-11-04T09:30:49.001Z",
      "type": "general",
      "price": 835.34,
      "currency": "CAD",
      "sectionCode": "A1",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-06-22T09:30:49.001Z"
    },
    {
      "id": 122,
      "eventName": "The Walker Finals",
      "venue": "Hauckside Concert Hall",
      "eventAt": "2026-05-13T12:16:48.103Z",
      "type": "balcony",
      "price": 298.36,
      "currency": "JPY",
      "sectionCode": "C1",
      "seatCode": "W10",
      "isSold": false,
      "createdAt": "2025-12-10T12:16:48.103Z"
    },
    {
      "id": 123,
      "eventName": "National Beier Championship",
      "venue": "Ezraview Theater",
      "eventAt": "2026-07-21T12:44:17.330Z",
      "type": "balcony",
      "price": 609.68,
      "currency": "JPY",
      "sectionCode": "A2",
      "seatCode": "T48",
      "isSold": true,
      "createdAt": "2026-05-22T12:44:17.330Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=6",
    "next": "/api/v1/tickets?page=7",
    "prev": "/api/v1/tickets?page=5"
  }
}
Draftbit