example-data.com

tickets / #10

Apr
2
Fri

Ultimate Stroman Exhibition

10:01 AM

O'Reillyton Concert Hall

From GBP642.80

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/10"
)
ticket = res.json()
{
  "id": 10,
  "eventName": "Ultimate Stroman Exhibition",
  "venue": "O'Reillyton Concert Hall",
  "eventAt": "2027-04-02T10:01:00.276Z",
  "type": "vip",
  "price": 642.8,
  "currency": "GBP",
  "sectionCode": "C2",
  "seatCode": "J42",
  "isSold": true,
  "createdAt": "2026-12-08T10:01:00.276Z"
}
Draftbit