Jun
12
Thu
International Mayert Championship
1:42 PM
Elyria Theater
From MXN 505.24
Overview
tickets / #17
1:42 PM
Elyria Theater
From MXN 505.24
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/17" ); 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/17"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/17"
)
ticket = res.json() Response
{
"id": 17,
"eventName": "International Mayert Championship",
"venue": "Elyria Theater",
"eventAt": "2025-06-12T13:42:05.765Z",
"type": "standing",
"price": 505.24,
"currency": "MXN",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2025-02-15T13:42:05.765Z"
}