Jun
12
Thu
International Mayert Championship
1:42 PM
Elyria Theater
From MXN505.24
tickets / #17
1:42 PM
Elyria Theater
From MXN505.24
curl -sS \
"https://example-data.com/api/v1/tickets/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/17"
);
const ticket = await res.json();import type { Ticket } from "https://example-data.com/types/tickets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tickets/17"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/17"
)
ticket = res.json() {
"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"
}