example-data.com

tickets / #31

Aug
4
Mon

National Heathcote-Nicolas Gala

7:49 AM

North Emmanuelle Auditorium

From USD353.76

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/31"
)
ticket = res.json()
{
  "id": 31,
  "eventName": "National Heathcote-Nicolas Gala",
  "venue": "North Emmanuelle Auditorium",
  "eventAt": "2025-08-04T07:49:20.388Z",
  "type": "standing",
  "price": 353.76,
  "currency": "USD",
  "sectionCode": "A1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-02-26T07:49:20.388Z"
}
Draftbit