example-data.com
Menu
Browse docs and collections

Overview

tickets / #10

Apr
2
Fri

Ultimate Stroman Exhibition

10:01 AM

O'Reillyton Concert Hall

From GBP 642.80

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 10,
  "eventName": "Ultimate Stroman Exhibition",
  "venue": "O'Reillyton Concert Hall",
  "eventAt": "2027-04-02T10:01:00.276Z",
  "type": "vip",
  "price": 642.8,
  "currency": "GBP",
  "sectionCode": "C2",
  "seatCode": "J42",
  "isSold": true,
  "createdAt": "2026-12-08T10:01:00.276Z"
}