example-data.com

tickets

tickets

Page 2 of 10.

Jun
23
Mon

World Osinski Summit

12:18 PM

Chico Concert Hall

From MXN210.13

Apr
20
Mon

Grand McGlynn Summit

9:03 PM

Mullerstad Convention Center

From MXN280.95

Feb
4
Thu

National Anderson Exhibition

7:14 AM

Waco Stadium

From AUD288.59

Sep
7
Sun

World Pollich Concert

9:19 AM

Walshview Pavilion

From EUR922.24

Jul
14
Mon

World O'Kon Gala

9:48 AM

South Mohammadside Pavilion

From JPY884.96

Dec
31
Thu

International Quitzon Exhibition

12:46 AM

North Marquesboro Stadium

From JPY589.35

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": 25,
      "eventName": "World Osinski Summit",
      "venue": "Chico Concert Hall",
      "eventAt": "2025-06-23T12:18:42.012Z",
      "type": "reserved",
      "price": 210.13,
      "currency": "MXN",
      "sectionCode": "D2",
      "seatCode": "A32",
      "isSold": true,
      "createdAt": "2025-01-13T12:18:42.012Z"
    },
    {
      "id": 26,
      "eventName": "Grand McGlynn Summit",
      "venue": "Mullerstad Convention Center",
      "eventAt": "2026-04-20T21:03:31.309Z",
      "type": "reserved",
      "price": 280.95,
      "currency": "MXN",
      "sectionCode": "FLOOR",
      "seatCode": "M47",
      "isSold": false,
      "createdAt": "2026-01-22T21:03:31.309Z"
    },
    {
      "id": 27,
      "eventName": "National Anderson Exhibition",
      "venue": "Waco Stadium",
      "eventAt": "2027-02-04T07:14:51.296Z",
      "type": "general",
      "price": 288.59,
      "currency": "AUD",
      "sectionCode": "C1",
      "seatCode": null,
      "isSold": false,
      "createdAt": "2026-09-02T07:14:51.296Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=2",
    "next": "/api/v1/tickets?page=3",
    "prev": "/api/v1/tickets?page=1"
  }
}
Draftbit