example-data.com

tickets / #218

Oct
18
Sun

The Fadel Show

1:31 PM

Minnetonka Arena

From EUR700.88

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/218"
)
ticket = res.json()
{
  "id": 218,
  "eventName": "The Fadel Show",
  "venue": "Minnetonka Arena",
  "eventAt": "2026-10-18T13:31:25.189Z",
  "type": "vip",
  "price": 700.88,
  "currency": "EUR",
  "sectionCode": "A2",
  "seatCode": "F24",
  "isSold": false,
  "createdAt": "2026-09-01T13:31:25.189Z"
}
Draftbit