example-data.com
Menu
Browse docs and collections

Overview

events / #87

Feb
22
Mon

Premier Launch Party 2026

10:18 PM – 9:48 AM

Denver, CO

412 attending

Enim decens sumo corpus vetus tum thorax. Conturbo cruentus spiculum asperiores cohors abutor iure. Comparo comparo commodi vulgus tabula via aliquam.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/events/87"
);
const event = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/events.d.ts https://example-data.com/types/events.d.ts
import type { Event } from "./types/events";

const res = await fetch(
  "https://example-data.com/api/v1/events/87"
);
const event = (await res.json()) as Event;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/events/87"
)
event = res.json()

Response

{
  "id": 87,
  "title": "Premier Launch Party 2026",
  "slug": "premier-launch-party-2026-87",
  "description": "Enim decens sumo corpus vetus tum thorax. Conturbo cruentus spiculum asperiores cohors abutor iure. Comparo comparo commodi vulgus tabula via aliquam.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2027-02-22T22:18:24.930Z",
  "endAt": "2027-02-23T09:48:00.487Z",
  "organizerUserId": 130,
  "attendeeCount": 412,
  "createdAt": "2026-02-18T19:29:32.638Z",
  "updatedAt": "2026-04-15T10:11:54.306Z"
}