Jul
11
Sat
Annual Ankunding Exhibition
4:48 AM
Yadirachester Amphitheater
From EUR 320.14
Overview
tickets / #47
4:48 AM
Yadirachester Amphitheater
From EUR 320.14
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/47" ); 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/47"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/47"
)
ticket = res.json() Response
{
"id": 47,
"eventName": "Annual Ankunding Exhibition",
"venue": "Yadirachester Amphitheater",
"eventAt": "2026-07-11T04:48:11.194Z",
"type": "standing",
"price": 320.14,
"currency": "EUR",
"sectionCode": "D1",
"seatCode": null,
"isSold": false,
"createdAt": "2026-04-25T04:48:11.194Z"
}