Sep
25
Fri
Annual Ondricka Concert
11:19 PM
Derricktown Concert Hall
From USD533.49
tickets / #130
11:19 PM
Derricktown Concert Hall
From USD533.49
curl -sS \
"https://example-data.com/api/v1/tickets/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/130"
);
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/130"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/130"
)
ticket = res.json() {
"id": 130,
"eventName": "Annual Ondricka Concert",
"venue": "Derricktown Concert Hall",
"eventAt": "2026-09-25T23:19:11.497Z",
"type": "balcony",
"price": 533.49,
"currency": "USD",
"sectionCode": "GA",
"seatCode": "A16",
"isSold": true,
"createdAt": "2026-07-11T23:19:11.497Z"
}