example-data.com

tickets / #98

Jan
30
Sat

International Beahan Show

3:25 AM

Theresaville Pavilion

From MXN269.53

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/98"
)
ticket = res.json()
{
  "id": 98,
  "eventName": "International Beahan Show",
  "venue": "Theresaville Pavilion",
  "eventAt": "2027-01-30T03:25:02.017Z",
  "type": "standing",
  "price": 269.53,
  "currency": "MXN",
  "sectionCode": "B1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-10-11T03:25:02.017Z"
}
Draftbit