Aug
8
Fri
Ultimate Runolfsdottir Tour
7:52 AM
South Ignacio Arena
From MXN645.84
tickets / #200
7:52 AM
South Ignacio Arena
From MXN645.84
curl -sS \
"https://example-data.com/api/v1/tickets/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/200"
);
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/200"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/200"
)
ticket = res.json() {
"id": 200,
"eventName": "Ultimate Runolfsdottir Tour",
"venue": "South Ignacio Arena",
"eventAt": "2025-08-08T07:52:03.097Z",
"type": "vip",
"price": 645.84,
"currency": "MXN",
"sectionCode": "D2",
"seatCode": "M15",
"isSold": true,
"createdAt": "2025-03-25T07:52:03.097Z"
}