example-data.com

tickets / #156

Nov
4
Tue

National Bernhard Festival

9:33 PM

North Savion Concert Hall

From MXN46.16

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/156"
)
ticket = res.json()
{
  "id": 156,
  "eventName": "National Bernhard Festival",
  "venue": "North Savion Concert Hall",
  "eventAt": "2025-11-04T21:33:49.445Z",
  "type": "balcony",
  "price": 46.16,
  "currency": "MXN",
  "sectionCode": "VIP",
  "seatCode": "X5",
  "isSold": false,
  "createdAt": "2025-10-18T21:33:49.445Z"
}
Draftbit