example-data.com

tickets / #240

Nov
7
Sat

The Runolfsdottir Summit

11:57 PM

Aufderharborough Arena

From JPY761.83

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/240"
)
ticket = res.json()
{
  "id": 240,
  "eventName": "The Runolfsdottir Summit",
  "venue": "Aufderharborough Arena",
  "eventAt": "2026-11-07T23:57:48.669Z",
  "type": "vip",
  "price": 761.83,
  "currency": "JPY",
  "sectionCode": "C1",
  "seatCode": "B14",
  "isSold": false,
  "createdAt": "2026-06-22T23:57:48.669Z"
}
Draftbit