example-data.com
Menu
Browse docs and collections

Overview

tickets / #35

Jan
6
Wed

National Murazik Championship

4:11 AM

Mannburgh Amphitheater

From GBP 892.38

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 35,
  "eventName": "National Murazik Championship",
  "venue": "Mannburgh Amphitheater",
  "eventAt": "2027-01-06T04:11:14.958Z",
  "type": "reserved",
  "price": 892.38,
  "currency": "GBP",
  "sectionCode": "VIP",
  "seatCode": "B21",
  "isSold": true,
  "createdAt": "2026-08-29T04:11:14.958Z"
}