example-data.com

tickets

tickets

Page 7 of 10.

Jan
12
Tue

Classic Von Gala

12:39 AM

Breitenbergfort Auditorium

From CAD23.70

Sep
27
Sun

Grand Wiza Finals

12:32 PM

Lake Hollyfurt Theater

From MXN861.89

Mar
19
Thu

Annual Ratke Concert

3:58 AM

Cormierberg Concert Hall

From GBP406.79

Jul
30
Wed

International Klein Concert

12:22 AM

Colefurt Pavilion

From EUR581.60

Mar
8
Sun

International Borer Tour

7:02 PM

Ramonton Convention Center

From MXN579.97

Jan
24
Sun

National Schaefer-Turcotte Championship

12:13 AM

Edmond Convention Center

From CAD951.67

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": 145,
      "eventName": "Classic Von Gala",
      "venue": "Breitenbergfort Auditorium",
      "eventAt": "2027-01-12T00:39:12.401Z",
      "type": "reserved",
      "price": 23.7,
      "currency": "CAD",
      "sectionCode": "B2",
      "seatCode": "I46",
      "isSold": true,
      "createdAt": "2026-10-10T00:39:12.401Z"
    },
    {
      "id": 146,
      "eventName": "Grand Wiza Finals",
      "venue": "Lake Hollyfurt Theater",
      "eventAt": "2026-09-27T12:32:44.510Z",
      "type": "vip",
      "price": 861.89,
      "currency": "MXN",
      "sectionCode": "B2",
      "seatCode": "F17",
      "isSold": false,
      "createdAt": "2026-08-12T12:32:44.510Z"
    },
    {
      "id": 147,
      "eventName": "Annual Ratke Concert",
      "venue": "Cormierberg Concert Hall",
      "eventAt": "2026-03-19T03:58:54.879Z",
      "type": "general",
      "price": 406.79,
      "currency": "GBP",
      "sectionCode": "C1",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-01-19T03:58:54.879Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=7",
    "next": "/api/v1/tickets?page=8",
    "prev": "/api/v1/tickets?page=6"
  }
}
Draftbit