example-data.com

tickets / #21

Jan
2
Fri

International Nienow Concert

6:08 AM

Pico Rivera Concert Hall

From JPY161.98

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/21"
)
ticket = res.json()
{
  "id": 21,
  "eventName": "International Nienow Concert",
  "venue": "Pico Rivera Concert Hall",
  "eventAt": "2026-01-02T06:08:29.692Z",
  "type": "standing",
  "price": 161.98,
  "currency": "JPY",
  "sectionCode": "C2",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-07-27T06:08:29.692Z"
}
Draftbit