example-data.com

tickets / #28

Sep
7
Sun

World Pollich Concert

9:19 AM

Walshview Pavilion

From EUR922.24

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/tickets/28"
)
ticket = res.json()
{
  "id": 28,
  "eventName": "World Pollich Concert",
  "venue": "Walshview Pavilion",
  "eventAt": "2025-09-07T09:19:07.877Z",
  "type": "general",
  "price": 922.24,
  "currency": "EUR",
  "sectionCode": "B2",
  "seatCode": null,
  "isSold": true,
  "createdAt": "2025-07-13T09:19:07.877Z"
}
Draftbit