example-data.com
Menu
Browse docs and collections

Overview

tickets / #116

Mar
13
Sat

Grand O'Kon-Wilderman Gala

12:24 AM

Roobtown Pavilion

From JPY 687.49

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 116,
  "eventName": "Grand O'Kon-Wilderman Gala",
  "venue": "Roobtown Pavilion",
  "eventAt": "2027-03-13T00:24:58.706Z",
  "type": "balcony",
  "price": 687.49,
  "currency": "JPY",
  "sectionCode": "A1",
  "seatCode": "X33",
  "isSold": false,
  "createdAt": "2026-11-24T00:24:58.706Z"
}