Apr
2
Fri
The Weissnat Finals
5:20 AM
South Wellington Stadium
From USD 148.85
Overview
tickets / #220
5:20 AM
South Wellington Stadium
From USD 148.85
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/220" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/220" ); 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/220"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/220"
)
ticket = res.json() Response
{
"id": 220,
"eventName": "The Weissnat Finals",
"venue": "South Wellington Stadium",
"eventAt": "2027-04-02T05:20:44.651Z",
"type": "general",
"price": 148.85,
"currency": "USD",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2026-11-16T05:20:44.651Z"
}