Aug
27
Thu
International Terry Tour
6:29 AM
Lake Kyle Arena
From USD 687.15
Overview
tickets / #11
6:29 AM
Lake Kyle Arena
From USD 687.15
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/11" ); 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/11"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/11"
)
ticket = res.json() Response
{
"id": 11,
"eventName": "International Terry Tour",
"venue": "Lake Kyle Arena",
"eventAt": "2026-08-27T06:29:11.092Z",
"type": "general",
"price": 687.15,
"currency": "USD",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2026-04-24T06:29:11.092Z"
}