example-data.com

tickets / #1

May
2
Sun

Ultimate Zulauf Championship

9:27 PM

Daly City Convention Center

From JPY626.11

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/1"
)
ticket = res.json()
{
  "id": 1,
  "eventName": "Ultimate Zulauf Championship",
  "venue": "Daly City Convention Center",
  "eventAt": "2027-05-02T21:27:11.496Z",
  "type": "standing",
  "price": 626.11,
  "currency": "JPY",
  "sectionCode": "GA",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2027-04-07T21:27:11.496Z"
}
Draftbit