example-data.com

tickets / #237

May
29
Thu

Ultimate Schroeder Show

2:38 AM

New Inesmouth Arena

From USD866.19

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/237"
)
ticket = res.json()
{
  "id": 237,
  "eventName": "Ultimate Schroeder Show",
  "venue": "New Inesmouth Arena",
  "eventAt": "2025-05-29T02:38:34.633Z",
  "type": "standing",
  "price": 866.19,
  "currency": "USD",
  "sectionCode": "GA",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-04-05T02:38:34.633Z"
}
Draftbit