example-data.com

tickets / #4

May
25
Mon

The Lynch Show

9:08 AM

Yazminboro Amphitheater

From USD222.22

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/4"
)
ticket = res.json()
{
  "id": 4,
  "eventName": "The Lynch Show",
  "venue": "Yazminboro Amphitheater",
  "eventAt": "2026-05-25T09:08:43.240Z",
  "type": "vip",
  "price": 222.22,
  "currency": "USD",
  "sectionCode": "FLOOR",
  "seatCode": "M33",
  "isSold": true,
  "createdAt": "2026-02-13T09:08:43.240Z"
}
Draftbit