Sep
25
Fri
Annual Ondricka Concert
11:19 PM
Derricktown Concert Hall
From USD 533.49
Overview
tickets / #130
11:19 PM
Derricktown Concert Hall
From USD 533.49
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/130" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/130" ); const ticket = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tickets.d.ts https://example-data.com/types/tickets.d.ts
import type { Ticket } from "./types/tickets";
const res = await fetch(
"https://example-data.com/api/v1/tickets/130"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/130"
)
ticket = res.json() Response
{
"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"
}