Oct
4
Sun
Ultimate Von Show
4:01 PM
West Dulce Amphitheater
From USD 729.64
Overview
tickets / #176
4:01 PM
West Dulce Amphitheater
From USD 729.64
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/176" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/176" ); 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/176"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/176"
)
ticket = res.json() Response
{
"id": 176,
"eventName": "Ultimate Von Show",
"venue": "West Dulce Amphitheater",
"eventAt": "2026-10-04T16:01:12.921Z",
"type": "vip",
"price": 729.64,
"currency": "USD",
"sectionCode": "VIP",
"seatCode": "U8",
"isSold": false,
"createdAt": "2026-05-04T16:01:12.921Z"
}