example-data.com

tickets / #139

Feb
20
Fri

National Macejkovic Finals

9:25 AM

Bernierfort Amphitheater

From MXN829.55

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/139"
)
ticket = res.json()
{
  "id": 139,
  "eventName": "National Macejkovic Finals",
  "venue": "Bernierfort Amphitheater",
  "eventAt": "2026-02-20T09:25:04.104Z",
  "type": "vip",
  "price": 829.55,
  "currency": "MXN",
  "sectionCode": "FLOOR",
  "seatCode": "B5",
  "isSold": true,
  "createdAt": "2025-09-18T09:25:04.104Z"
}
Draftbit