example-data.com

tickets / #77

Jun
18
Thu

Classic Morar Festival

5:04 AM

Lake Jane Arena

From EUR541.38

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/77"
)
ticket = res.json()
{
  "id": 77,
  "eventName": "Classic Morar Festival",
  "venue": "Lake Jane Arena",
  "eventAt": "2026-06-18T05:04:41.360Z",
  "type": "balcony",
  "price": 541.38,
  "currency": "EUR",
  "sectionCode": "GA",
  "seatCode": "E5",
  "isSold": false,
  "createdAt": "2026-03-02T05:04:41.360Z"
}
Draftbit