Mar
8
Sun
International Borer Tour
7:02 PM
Ramonton Convention Center
From MXN579.97
tickets / #149
7:02 PM
Ramonton Convention Center
From MXN579.97
curl -sS \
"https://example-data.com/api/v1/tickets/149" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tickets/149"
);
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/149"
);
const ticket = (await res.json()) as Ticket;import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/149"
)
ticket = res.json() {
"id": 149,
"eventName": "International Borer Tour",
"venue": "Ramonton Convention Center",
"eventAt": "2026-03-08T19:02:37.550Z",
"type": "vip",
"price": 579.97,
"currency": "MXN",
"sectionCode": "VIP",
"seatCode": "W28",
"isSold": false,
"createdAt": "2025-09-19T19:02:37.550Z"
}