example-data.com

tickets / #203

Sep
27
Sat

International Sanford Tour

11:10 AM

Sipesbury Amphitheater

From JPY271.30

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/203"
)
ticket = res.json()
{
  "id": 203,
  "eventName": "International Sanford Tour",
  "venue": "Sipesbury Amphitheater",
  "eventAt": "2025-09-27T11:10:02.794Z",
  "type": "standing",
  "price": 271.3,
  "currency": "JPY",
  "sectionCode": "GA",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-09-20T11:10:02.794Z"
}
Draftbit