May
2
Sun
Ultimate Zulauf Championship
9:27 PM
Daly City Convention Center
From JPY 626.11
Overview
tickets / #1
9:27 PM
Daly City Convention Center
From JPY 626.11
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/1" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/1" ); 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/1"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/1"
)
ticket = res.json() Response
{
"id": 1,
"eventName": "Ultimate Zulauf Championship",
"venue": "Daly City Convention Center",
"eventAt": "2027-05-02T21:27:11.496Z",
"type": "standing",
"price": 626.11,
"currency": "JPY",
"sectionCode": "GA",
"seatCode": null,
"isSold": true,
"createdAt": "2027-04-07T21:27:11.496Z"
}