example-data.com

tickets

tickets

Browse 300 tickets records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

May
2
Sun

Ultimate Zulauf Championship

9:27 PM

Daly City Convention Center

From JPY626.11

Nov
26
Wed

Grand White Exhibition

4:31 PM

Brendenchester Arena

From CAD595.75

Aug
25
Tue

Grand Hansen Exhibition

4:30 AM

New Arno Amphitheater

From GBP933.48

May
25
Mon

The Lynch Show

9:08 AM

Yazminboro Amphitheater

From USD222.22

Oct
20
Tue

Annual Hartmann Open

3:24 AM

Janesville Arena

From JPY42.78

Jan
31
Sun

Ultimate Moen Summit

8:34 PM

Haagfort Stadium

From AUD984.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": 1,
      "eventName": "Ultimate Zulauf Championship",
      "venue": "Daly City Convention Center",
      "eventAt": "2027-05-02T21:27:11.496Z",
      "type": "standing",
      "price": 626.11,
      "currency": "JPY",
      "sectionCode": "GA",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2027-04-07T21:27:11.496Z"
    },
    {
      "id": 2,
      "eventName": "Grand White Exhibition",
      "venue": "Brendenchester Arena",
      "eventAt": "2025-11-26T16:31:06.526Z",
      "type": "vip",
      "price": 595.75,
      "currency": "CAD",
      "sectionCode": "D2",
      "seatCode": "J18",
      "isSold": true,
      "createdAt": "2025-06-26T16:31:06.526Z"
    },
    {
      "id": 3,
      "eventName": "Grand Hansen Exhibition",
      "venue": "New Arno Amphitheater",
      "eventAt": "2026-08-25T04:30:05.972Z",
      "type": "standing",
      "price": 933.48,
      "currency": "GBP",
      "sectionCode": "FLOOR",
      "seatCode": null,
      "isSold": true,
      "createdAt": "2026-06-04T04:30:05.972Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 300,
    "totalPages": 12
  },
  "links": {
    "self": "/api/v1/tickets?page=1",
    "first": "/api/v1/tickets?page=1",
    "last": "/api/v1/tickets?page=12",
    "next": "/api/v1/tickets?page=2",
    "prev": null
  }
}

View full response →

Draftbit