example-data.com

tickets / #91

Jul
11
Fri

Ultimate Ward Tour

9:34 AM

Bossier City Theater

From USD741.71

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/91"
)
ticket = res.json()
{
  "id": 91,
  "eventName": "Ultimate Ward Tour",
  "venue": "Bossier City Theater",
  "eventAt": "2025-07-11T09:34:54.587Z",
  "type": "general",
  "price": 741.71,
  "currency": "USD",
  "sectionCode": "C2",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-01-30T09:34:54.587Z"
}
Draftbit