Aug
18
Mon
Ultimate Schneider Championship
10:03 AM
Port Megane Stadium
From USD 241.94
Overview
tickets / #12
10:03 AM
Port Megane Stadium
From USD 241.94
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/12" ); 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/12"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/12"
)
ticket = res.json() Response
{
"id": 12,
"eventName": "Ultimate Schneider Championship",
"venue": "Port Megane Stadium",
"eventAt": "2025-08-18T10:03:35.731Z",
"type": "standing",
"price": 241.94,
"currency": "USD",
"sectionCode": "A2",
"seatCode": null,
"isSold": false,
"createdAt": "2025-07-07T10:03:35.731Z"
}