example-data.com

tickets / #65

Aug
11
Mon

Annual Carter Concert

11:10 PM

Rutherfordview Auditorium

From JPY170.32

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/65"
)
ticket = res.json()
{
  "id": 65,
  "eventName": "Annual Carter Concert",
  "venue": "Rutherfordview Auditorium",
  "eventAt": "2025-08-11T23:10:55.591Z",
  "type": "reserved",
  "price": 170.32,
  "currency": "JPY",
  "sectionCode": "VIP",
  "seatCode": "N2",
  "isSold": false,
  "createdAt": "2025-04-24T23:10:55.591Z"
}
Draftbit