Jan
17
Sat
Ultimate Marvin Festival
2:50 AM
Lake Garrisoncester Arena
From EUR 233.40
Overview
tickets / #113
2:50 AM
Lake Garrisoncester Arena
From EUR 233.40
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/113" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/113" ); 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/113"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/113"
)
ticket = res.json() Response
{
"id": 113,
"eventName": "Ultimate Marvin Festival",
"venue": "Lake Garrisoncester Arena",
"eventAt": "2026-01-17T02:50:28.559Z",
"type": "general",
"price": 233.4,
"currency": "EUR",
"sectionCode": "FLOOR",
"seatCode": null,
"isSold": true,
"createdAt": "2025-12-17T02:50:28.559Z"
}