example-data.com

tickets

tickets

Page 10 of 10.

Feb
26
Fri

International Christiansen Concert

4:44 AM

Evanston Stadium

From GBP868.29

Oct
18
Sun

The Fadel Show

1:31 PM

Minnetonka Arena

From EUR700.88

Sep
15
Mon

Annual Frami Summit

4:13 PM

New Cruz Arena

From AUD349.28

Apr
2
Fri

The Weissnat Finals

5:20 AM

South Wellington Stadium

From USD148.85

Jun
28
Sun

National Towne Summit

11:31 PM

Rohnert Park Theater

From EUR364.32

Mar
17
Tue

The Swift Exhibition

12:47 PM

Bethboro Concert Hall

From USD752.33

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": 217,
      "eventName": "International Christiansen Concert",
      "venue": "Evanston Stadium",
      "eventAt": "2027-02-26T04:44:29.240Z",
      "type": "general",
      "price": 868.29,
      "currency": "GBP",
      "sectionCode": "A2",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-11-02T04:44:29.240Z"
    },
    {
      "id": 218,
      "eventName": "The Fadel Show",
      "venue": "Minnetonka Arena",
      "eventAt": "2026-10-18T13:31:25.189Z",
      "type": "vip",
      "price": 700.88,
      "currency": "EUR",
      "sectionCode": "A2",
      "seatCode": "F24",
      "isSold": false,
      "createdAt": "2026-09-01T13:31:25.189Z"
    },
    {
      "id": 219,
      "eventName": "Annual Frami Summit",
      "venue": "New Cruz Arena",
      "eventAt": "2025-09-15T16:13:10.363Z",
      "type": "vip",
      "price": 349.28,
      "currency": "AUD",
      "sectionCode": "A2",
      "seatCode": "O33",
      "isSold": true,
      "createdAt": "2025-08-11T16:13:10.363Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/tickets?page=10",
    "next": "/api/v1/tickets?page=11",
    "prev": "/api/v1/tickets?page=9"
  }
}
Draftbit