example-data.com

tickets / #38

Apr
9
Thu

Annual Jast Finals

8:52 AM

Wolffton Amphitheater

From JPY77.70

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/38"
)
ticket = res.json()
{
  "id": 38,
  "eventName": "Annual Jast Finals",
  "venue": "Wolffton Amphitheater",
  "eventAt": "2026-04-09T08:52:53.711Z",
  "type": "balcony",
  "price": 77.7,
  "currency": "JPY",
  "sectionCode": "B2",
  "seatCode": "R2",
  "isSold": false,
  "createdAt": "2026-01-14T08:52:53.711Z"
}
Draftbit