example-data.com

tickets / #178

Mar
9
Tue

Ultimate Grant Championship

11:13 AM

Marksstad Auditorium

From EUR808.64

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/178"
)
ticket = res.json()
{
  "id": 178,
  "eventName": "Ultimate Grant Championship",
  "venue": "Marksstad Auditorium",
  "eventAt": "2027-03-09T11:13:53.586Z",
  "type": "standing",
  "price": 808.64,
  "currency": "EUR",
  "sectionCode": "C1",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2027-01-16T11:13:53.586Z"
}
Draftbit