example-data.com

tickets

tickets

Page 4 of 10.

Dec
23
Wed

Annual Bednar Gala

1:21 PM

Wuckertville Convention Center

From MXN173.94

Mar
23
Mon

Grand Rau Gala

7:29 AM

Ednaland Auditorium

From CAD231.34

Apr
4
Sun

International Russel Finals

8:56 AM

Council Bluffs Stadium

From GBP223.26

Jun
11
Thu

Ultimate Satterfield Finals

11:23 PM

Conroyberg Auditorium

From AUD264.35

Jun
18
Thu

Classic Morar Festival

5:04 AM

Lake Jane Arena

From EUR541.38

Mar
15
Sun

International Balistreri Tour

4:27 PM

Amandaville Stadium

From JPY94.73

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": 73,
      "eventName": "Annual Bednar Gala",
      "venue": "Wuckertville Convention Center",
      "eventAt": "2026-12-23T13:21:01.760Z",
      "type": "standing",
      "price": 173.94,
      "currency": "MXN",
      "sectionCode": "VIP",
      "seatCode": null,
      "isSold": false,
      "createdAt": "2026-11-07T13:21:01.760Z"
    },
    {
      "id": 74,
      "eventName": "Grand Rau Gala",
      "venue": "Ednaland Auditorium",
      "eventAt": "2026-03-23T07:29:01.357Z",
      "type": "reserved",
      "price": 231.34,
      "currency": "CAD",
      "sectionCode": "C2",
      "seatCode": "N48",
      "isSold": true,
      "createdAt": "2025-12-26T07:29:01.357Z"
    },
    {
      "id": 75,
      "eventName": "International Russel Finals",
      "venue": "Council Bluffs Stadium",
      "eventAt": "2027-04-04T08:56:27.504Z",
      "type": "vip",
      "price": 223.26,
      "currency": "GBP",
      "sectionCode": "D2",
      "seatCode": "G11",
      "isSold": false,
      "createdAt": "2027-01-12T08:56:27.504Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=4",
    "next": "/api/v1/tickets?page=5",
    "prev": "/api/v1/tickets?page=3"
  }
}
Draftbit