example-data.com

tickets / #116

Mar
13
Sat

Grand O'Kon-Wilderman Gala

12:24 AM

Roobtown Pavilion

From JPY687.49

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/116"
)
ticket = res.json()
{
  "id": 116,
  "eventName": "Grand O'Kon-Wilderman Gala",
  "venue": "Roobtown Pavilion",
  "eventAt": "2027-03-13T00:24:58.706Z",
  "type": "balcony",
  "price": 687.49,
  "currency": "JPY",
  "sectionCode": "A1",
  "seatCode": "X33",
  "isSold": false,
  "createdAt": "2026-11-24T00:24:58.706Z"
}
Draftbit