Feb
27
Sat
International Roob Open
5:59 AM
Erniechester Convention Center
From EUR14.20
tickets / #194
5:59 AM
Erniechester Convention Center
From EUR14.20
curl -sS \
"https://example-data.com/api/v1/tickets/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/194"
);
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/194"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/194"
)
ticket = res.json() {
"id": 194,
"eventName": "International Roob Open",
"venue": "Erniechester Convention Center",
"eventAt": "2027-02-27T05:59:10.504Z",
"type": "vip",
"price": 14.2,
"currency": "EUR",
"sectionCode": "C2",
"seatCode": "K21",
"isSold": false,
"createdAt": "2026-10-24T05:59:10.504Z"
}