example-data.com
Menu
Browse docs and collections

Overview

tickets / #161

May
28
Wed

Grand Larson Exhibition

2:09 PM

Lillacester Arena

From AUD 713.21

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tickets/161" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tickets/161"
);
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/161"
);
const ticket = (await res.json()) as Ticket;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tickets/161"
)
ticket = res.json()

Response

{
  "id": 161,
  "eventName": "Grand Larson Exhibition",
  "venue": "Lillacester Arena",
  "eventAt": "2025-05-28T14:09:46.951Z",
  "type": "general",
  "price": 713.21,
  "currency": "AUD",
  "sectionCode": "FLOOR",
  "seatCode": null,
  "isSold": false,
  "createdAt": "2025-01-29T14:09:46.951Z"
}