example-data.com

tickets / #193

May
1
Sat

Classic Rolfson Tour

3:31 AM

Moisesville Arena

From EUR932.94

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/193"
)
ticket = res.json()
{
  "id": 193,
  "eventName": "Classic Rolfson Tour",
  "venue": "Moisesville Arena",
  "eventAt": "2027-05-01T03:31:36.549Z",
  "type": "standing",
  "price": 932.94,
  "currency": "EUR",
  "sectionCode": "B1",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2027-02-07T03:31:36.549Z"
}
Draftbit