example-data.com

tickets / #3

Aug
25
Tue

Grand Hansen Exhibition

4:30 AM

New Arno Amphitheater

From GBP933.48

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/3"
)
ticket = res.json()
{
  "id": 3,
  "eventName": "Grand Hansen Exhibition",
  "venue": "New Arno Amphitheater",
  "eventAt": "2026-08-25T04:30:05.972Z",
  "type": "standing",
  "price": 933.48,
  "currency": "GBP",
  "sectionCode": "FLOOR",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-06-04T04:30:05.972Z"
}
Draftbit