example-data.com

tickets / #213

Mar
12
Thu

The Luettgen-Hilpert Show

8:48 AM

New Mariane Convention Center

From EUR485.07

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/213"
)
ticket = res.json()
{
  "id": 213,
  "eventName": "The Luettgen-Hilpert Show",
  "venue": "New Mariane Convention Center",
  "eventAt": "2026-03-12T08:48:55.900Z",
  "type": "vip",
  "price": 485.07,
  "currency": "EUR",
  "sectionCode": "C2",
  "seatCode": "V44",
  "isSold": false,
  "createdAt": "2025-12-31T08:48:55.900Z"
}
Draftbit