example-data.com

tickets / #147

Mar
19
Thu

Annual Ratke Concert

3:58 AM

Cormierberg Concert Hall

From GBP406.79

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/147"
)
ticket = res.json()
{
  "id": 147,
  "eventName": "Annual Ratke Concert",
  "venue": "Cormierberg Concert Hall",
  "eventAt": "2026-03-19T03:58:54.879Z",
  "type": "general",
  "price": 406.79,
  "currency": "GBP",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-01-19T03:58:54.879Z"
}
Draftbit