Nov
7
Sat
The Runolfsdottir Summit
11:57 PM
Aufderharborough Arena
From JPY 761.83
Overview
tickets / #240
11:57 PM
Aufderharborough Arena
From JPY 761.83
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/240" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/240" ); 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/240"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/240"
)
ticket = res.json() Response
{
"id": 240,
"eventName": "The Runolfsdottir Summit",
"venue": "Aufderharborough Arena",
"eventAt": "2026-11-07T23:57:48.669Z",
"type": "vip",
"price": 761.83,
"currency": "JPY",
"sectionCode": "C1",
"seatCode": "B14",
"isSold": false,
"createdAt": "2026-06-22T23:57:48.669Z"
}