May
25
Mon
The Lynch Show
9:08 AM
Yazminboro Amphitheater
From USD 222.22
Overview
tickets / #4
9:08 AM
Yazminboro Amphitheater
From USD 222.22
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/4" ); 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/4"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/4"
)
ticket = res.json() Response
{
"id": 4,
"eventName": "The Lynch Show",
"venue": "Yazminboro Amphitheater",
"eventAt": "2026-05-25T09:08:43.240Z",
"type": "vip",
"price": 222.22,
"currency": "USD",
"sectionCode": "FLOOR",
"seatCode": "M33",
"isSold": true,
"createdAt": "2026-02-13T09:08:43.240Z"
}