example-data.com

tickets / #204

Jan
22
Thu

World Parisian Concert

8:29 AM

Temecula Concert Hall

From GBP362.88

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/204"
)
ticket = res.json()
{
  "id": 204,
  "eventName": "World Parisian Concert",
  "venue": "Temecula Concert Hall",
  "eventAt": "2026-01-22T08:29:40.529Z",
  "type": "general",
  "price": 362.88,
  "currency": "GBP",
  "sectionCode": "VIP",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-10-06T08:29:40.529Z"
}
Draftbit