example-data.com

tickets / #207

Jun
27
Fri

Ultimate Zemlak Exhibition

7:03 AM

Reyberg Arena

From CAD856.72

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/207"
)
ticket = res.json()
{
  "id": 207,
  "eventName": "Ultimate Zemlak Exhibition",
  "venue": "Reyberg Arena",
  "eventAt": "2025-06-27T07:03:09.437Z",
  "type": "balcony",
  "price": 856.72,
  "currency": "CAD",
  "sectionCode": "A2",
  "seatCode": "Q22",
  "isSold": false,
  "createdAt": "2025-03-21T07:03:09.437Z"
}
Draftbit