Feb
17
Tue
Annual Schmeler Show
7:09 AM
Burnsville Amphitheater
From GBP 126.90
Overview
tickets / #7
7:09 AM
Burnsville Amphitheater
From GBP 126.90
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/7" ); 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/7"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/7"
)
ticket = res.json() Response
{
"id": 7,
"eventName": "Annual Schmeler Show",
"venue": "Burnsville Amphitheater",
"eventAt": "2026-02-17T07:09:48.166Z",
"type": "reserved",
"price": 126.9,
"currency": "GBP",
"sectionCode": "D1",
"seatCode": "J18",
"isSold": true,
"createdAt": "2026-01-13T07:09:48.166Z"
}