example-data.com

tickets / #127

Jul
29
Tue

The Mills Exhibition

8:26 AM

Chaimview Arena

From JPY939.76

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/127"
)
ticket = res.json()
{
  "id": 127,
  "eventName": "The Mills Exhibition",
  "venue": "Chaimview Arena",
  "eventAt": "2025-07-29T08:26:50.713Z",
  "type": "balcony",
  "price": 939.76,
  "currency": "JPY",
  "sectionCode": "VIP",
  "seatCode": "V28",
  "isSold": true,
  "createdAt": "2025-06-20T08:26:50.713Z"
}
Draftbit