example-data.com

tickets / #100

Nov
18
Tue

Annual Batz Gala

12:34 PM

South Whittier Theater

From EUR21.26

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/100"
)
ticket = res.json()
{
  "id": 100,
  "eventName": "Annual Batz Gala",
  "venue": "South Whittier Theater",
  "eventAt": "2025-11-18T12:34:10.621Z",
  "type": "balcony",
  "price": 21.26,
  "currency": "EUR",
  "sectionCode": "D2",
  "seatCode": "J11",
  "isSold": false,
  "createdAt": "2025-11-11T12:34:10.621Z"
}
Draftbit