example-data.com

tickets / #112

Nov
8
Sun

The Wiza Show

7:27 PM

New Phyllis Arena

From GBP860.18

Component variants

curl -sS \
  "https://example-data.com/api/v1/tickets/112" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tickets/112"
);
const ticket = await res.json();
import type { Ticket } from "https://example-data.com/types/tickets.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tickets/112"
);
const ticket = (await res.json()) as Ticket;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tickets/112"
)
ticket = res.json()
{
  "id": 112,
  "eventName": "The Wiza Show",
  "venue": "New Phyllis Arena",
  "eventAt": "2026-11-08T19:27:55.464Z",
  "type": "reserved",
  "price": 860.18,
  "currency": "GBP",
  "sectionCode": "C1",
  "seatCode": "G12",
  "isSold": true,
  "createdAt": "2026-10-20T19:27:55.464Z"
}
Draftbit