example-data.com
Menu
Browse docs and collections

Overview

tickets / #25

Jun
23
Mon

World Osinski Summit

12:18 PM

Chico Concert Hall

From MXN 210.13

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 25,
  "eventName": "World Osinski Summit",
  "venue": "Chico Concert Hall",
  "eventAt": "2025-06-23T12:18:42.012Z",
  "type": "reserved",
  "price": 210.13,
  "currency": "MXN",
  "sectionCode": "D2",
  "seatCode": "A32",
  "isSold": true,
  "createdAt": "2025-01-13T12:18:42.012Z"
}