Jul
11
Fri
Ultimate Ward Tour
9:34 AM
Bossier City Theater
From USD 741.71
Overview
tickets / #91
9:34 AM
Bossier City Theater
From USD 741.71
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tickets/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tickets/91" ); 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/91"
);
const ticket = (await res.json()) as Ticket; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tickets/91"
)
ticket = res.json() Response
{
"id": 91,
"eventName": "Ultimate Ward Tour",
"venue": "Bossier City Theater",
"eventAt": "2025-07-11T09:34:54.587Z",
"type": "general",
"price": 741.71,
"currency": "USD",
"sectionCode": "C2",
"seatCode": null,
"isSold": true,
"createdAt": "2025-01-30T09:34:54.587Z"
}