example-data.com

tickets / #7

Feb
17
Tue

Annual Schmeler Show

7:09 AM

Burnsville Amphitheater

From GBP126.90

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/7"
)
ticket = res.json()
{
  "id": 7,
  "eventName": "Annual Schmeler Show",
  "venue": "Burnsville Amphitheater",
  "eventAt": "2026-02-17T07:09:48.166Z",
  "type": "reserved",
  "price": 126.9,
  "currency": "GBP",
  "sectionCode": "D1",
  "seatCode": "J18",
  "isSold": true,
  "createdAt": "2026-01-13T07:09:48.166Z"
}
Draftbit