Jan
18
Sun
Annual Donnelly Concert
6:21 PM
Merrittland Pavilion
From JPY 443.57
Overview
tickets / #185
6:21 PM
Merrittland Pavilion
From JPY 443.57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/185" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/185" ); 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/185"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/185"
)
ticket = res.json() Response
{
"id": 185,
"eventName": "Annual Donnelly Concert",
"venue": "Merrittland Pavilion",
"eventAt": "2026-01-18T18:21:55.674Z",
"type": "standing",
"price": 443.57,
"currency": "JPY",
"sectionCode": "B2",
"seatCode": null,
"isSold": false,
"createdAt": "2025-08-07T18:21:55.674Z"
}