example-data.com

tickets / #11

Aug
27
Thu

International Terry Tour

6:29 AM

Lake Kyle Arena

From USD687.15

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/11"
)
ticket = res.json()
{
  "id": 11,
  "eventName": "International Terry Tour",
  "venue": "Lake Kyle Arena",
  "eventAt": "2026-08-27T06:29:11.092Z",
  "type": "general",
  "price": 687.15,
  "currency": "USD",
  "sectionCode": "GA",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2026-04-24T06:29:11.092Z"
}
Draftbit