example-data.com

tickets

tickets

Page 3 of 10.

Aug
11
Mon

Classic Fritsch Open

1:17 PM

Ceres Arena

From GBP347.15

Jan
22
Thu

Annual Erdman Festival

8:15 AM

New Nicktown Amphitheater

From EUR103.80

May
27
Tue

National Senger-Kilback Exhibition

10:46 PM

Fort Iva Stadium

From MXN604.29

Aug
30
Sat

National Hansen Tour

10:59 AM

High Point Auditorium

From CAD696.39

Jul
22
Tue

National Nikolaus Summit

8:02 PM

East Katarina Stadium

From EUR912.57

Jul
19
Sat

World Terry Concert

6:26 AM

New Nicola Amphitheater

From AUD501.78

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": 49,
      "eventName": "Classic Fritsch Open",
      "venue": "Ceres Arena",
      "eventAt": "2025-08-11T13:17:58.062Z",
      "type": "general",
      "price": 347.15,
      "currency": "GBP",
      "sectionCode": "A1",
      "seatCode": null,
      "isSold": false,
      "createdAt": "2025-06-03T13:17:58.062Z"
    },
    {
      "id": 50,
      "eventName": "Annual Erdman Festival",
      "venue": "New Nicktown Amphitheater",
      "eventAt": "2026-01-22T08:15:27.576Z",
      "type": "standing",
      "price": 103.8,
      "currency": "EUR",
      "sectionCode": "FLOOR",
      "seatCode": null,
      "isSold": false,
      "createdAt": "2025-12-05T08:15:27.576Z"
    },
    {
      "id": 51,
      "eventName": "National Senger-Kilback Exhibition",
      "venue": "Fort Iva Stadium",
      "eventAt": "2025-05-27T22:46:09.383Z",
      "type": "reserved",
      "price": 604.29,
      "currency": "MXN",
      "sectionCode": "VIP",
      "seatCode": "T5",
      "isSold": true,
      "createdAt": "2025-02-16T22:46:09.383Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=3",
    "next": "/api/v1/tickets?page=4",
    "prev": "/api/v1/tickets?page=2"
  }
}
Draftbit