example-data.com

tickets / #138

Jun
3
Tue

Grand Kunde Concert

7:29 PM

Manteca Stadium

From MXN899.98

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/138"
)
ticket = res.json()
{
  "id": 138,
  "eventName": "Grand Kunde Concert",
  "venue": "Manteca Stadium",
  "eventAt": "2025-06-03T19:29:51.519Z",
  "type": "general",
  "price": 899.98,
  "currency": "MXN",
  "sectionCode": "C2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-01-25T19:29:51.519Z"
}
Draftbit