Sep
8
Mon
Annual Stokes Concert
1:39 PM
Haagmouth Convention Center
From USD 726.94
Overview
tickets / #42
1:39 PM
Haagmouth Convention Center
From USD 726.94
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/42" ); 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/42"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/42"
)
ticket = res.json() Response
{
"id": 42,
"eventName": "Annual Stokes Concert",
"venue": "Haagmouth Convention Center",
"eventAt": "2025-09-08T13:39:19.321Z",
"type": "vip",
"price": 726.94,
"currency": "USD",
"sectionCode": "B2",
"seatCode": "Q5",
"isSold": true,
"createdAt": "2025-04-29T13:39:19.321Z"
}