example-data.com

tickets

tickets

Page 9 of 10.

May
1
Sat

Classic Rolfson Tour

3:31 AM

Moisesville Arena

From EUR932.94

Feb
27
Sat

International Roob Open

5:59 AM

Erniechester Convention Center

From EUR14.20

Oct
30
Fri

Annual Goyette Championship

11:47 AM

Arlington Amphitheater

From USD507.07

Jun
15
Sun

International Bernier Championship

10:16 AM

Eduardoborough Auditorium

From JPY944.41

Dec
14
Sun

National Koch Concert

9:39 PM

Placentia Amphitheater

From AUD66.95

Feb
27
Sat

Ultimate Hauck Open

11:22 AM

Anchorage Convention Center

From CAD306.41

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": 193,
      "eventName": "Classic Rolfson Tour",
      "venue": "Moisesville Arena",
      "eventAt": "2027-05-01T03:31:36.549Z",
      "type": "standing",
      "price": 932.94,
      "currency": "EUR",
      "sectionCode": "B1",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2027-02-07T03:31:36.549Z"
    },
    {
      "id": 194,
      "eventName": "International Roob Open",
      "venue": "Erniechester Convention Center",
      "eventAt": "2027-02-27T05:59:10.504Z",
      "type": "vip",
      "price": 14.2,
      "currency": "EUR",
      "sectionCode": "C2",
      "seatCode": "K21",
      "isSold": false,
      "createdAt": "2026-10-24T05:59:10.504Z"
    },
    {
      "id": 195,
      "eventName": "Annual Goyette Championship",
      "venue": "Arlington Amphitheater",
      "eventAt": "2026-10-30T11:47:17.887Z",
      "type": "balcony",
      "price": 507.07,
      "currency": "USD",
      "sectionCode": "B1",
      "seatCode": "P8",
      "isSold": true,
      "createdAt": "2026-10-16T11:47:17.887Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=9",
    "next": "/api/v1/tickets?page=10",
    "prev": "/api/v1/tickets?page=8"
  }
}
Draftbit