Nov
15
Sat
International Schuster Finals
12:45 AM
Johnstonfort Theater
From EUR698.47
tickets / #128
12:45 AM
Johnstonfort Theater
From EUR698.47
curl -sS \
"https://example-data.com/api/v1/tickets/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/128"
);
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/128"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/128"
)
ticket = res.json() {
"id": 128,
"eventName": "International Schuster Finals",
"venue": "Johnstonfort Theater",
"eventAt": "2025-11-15T00:45:14.505Z",
"type": "balcony",
"price": 698.47,
"currency": "EUR",
"sectionCode": "B2",
"seatCode": "D16",
"isSold": false,
"createdAt": "2025-06-06T00:45:14.505Z"
}