example-data.com

tickets / #6

Jan
31
Sun

Ultimate Moen Summit

8:34 PM

Haagfort Stadium

From AUD984.67

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/6"
)
ticket = res.json()
{
  "id": 6,
  "eventName": "Ultimate Moen Summit",
  "venue": "Haagfort Stadium",
  "eventAt": "2027-01-31T20:34:02.503Z",
  "type": "reserved",
  "price": 984.67,
  "currency": "AUD",
  "sectionCode": "A2",
  "seatCode": "L23",
  "isSold": true,
  "createdAt": "2027-01-19T20:34:02.503Z"
}
Draftbit