Feb
6
Sat
Grand Senger Show
10:33 PM
West Thomasstead Stadium
From USD 427.62
Overview
tickets / #19
10:33 PM
West Thomasstead Stadium
From USD 427.62
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/19" ); 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/19"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/19"
)
ticket = res.json() Response
{
"id": 19,
"eventName": "Grand Senger Show",
"venue": "West Thomasstead Stadium",
"eventAt": "2027-02-06T22:33:31.638Z",
"type": "general",
"price": 427.62,
"currency": "USD",
"sectionCode": "D2",
"seatCode": null,
"isSold": false,
"createdAt": "2026-11-19T22:33:31.638Z"
}