example-data.com

tickets / #54

Jul
19
Sat

World Terry Concert

6:26 AM

New Nicola Amphitheater

From AUD501.78

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/54"
)
ticket = res.json()
{
  "id": 54,
  "eventName": "World Terry Concert",
  "venue": "New Nicola Amphitheater",
  "eventAt": "2025-07-19T06:26:01.862Z",
  "type": "general",
  "price": 501.78,
  "currency": "AUD",
  "sectionCode": "FLOOR",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-02-22T06:26:01.862Z"
}
Draftbit