example-data.com

tickets / #12

Aug
18
Mon

Ultimate Schneider Championship

10:03 AM

Port Megane Stadium

From USD241.94

Component variants

curl -sS \
  "https://example-data.com/api/v1/tickets/12" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tickets/12"
);
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/12"
);
const ticket = (await res.json()) as Ticket;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tickets/12"
)
ticket = res.json()
{
  "id": 12,
  "eventName": "Ultimate Schneider Championship",
  "venue": "Port Megane Stadium",
  "eventAt": "2025-08-18T10:03:35.731Z",
  "type": "standing",
  "price": 241.94,
  "currency": "USD",
  "sectionCode": "A2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-07-07T10:03:35.731Z"
}
Draftbit