example-data.com

tickets / #185

Jan
18
Sun

Annual Donnelly Concert

6:21 PM

Merrittland Pavilion

From JPY443.57

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/185"
)
ticket = res.json()
{
  "id": 185,
  "eventName": "Annual Donnelly Concert",
  "venue": "Merrittland Pavilion",
  "eventAt": "2026-01-18T18:21:55.674Z",
  "type": "standing",
  "price": 443.57,
  "currency": "JPY",
  "sectionCode": "B2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-08-07T18:21:55.674Z"
}
Draftbit