Feb
26
Thu
Ultimate Donnelly Championship
11:08 PM
Garden Grove Concert Hall
From MXN 410.11
Overview
tickets / #261
11:08 PM
Garden Grove Concert Hall
From MXN 410.11
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/261" ); 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/261"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/261"
)
ticket = res.json() Response
{
"id": 261,
"eventName": "Ultimate Donnelly Championship",
"venue": "Garden Grove Concert Hall",
"eventAt": "2026-02-26T23:08:09.664Z",
"type": "balcony",
"price": 410.11,
"currency": "MXN",
"sectionCode": "A2",
"seatCode": "R25",
"isSold": false,
"createdAt": "2026-01-23T23:08:09.664Z"
}