example-data.com
Menu
Browse docs and collections

Overview

events / #34

Jul
20
Mon

Global Launch Party 2025

9:36 PM – 2:13 AM

Portland, OR

546 attending

Eum sub tametsi omnis comparo utroque spiculum valetudo adfectus. Ustulo maiores cunabula tollo. Acies amitto cicuta barba canonicus angulus creber.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/events/34"
);
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/34"
);
const event = (await res.json()) as Event;

Python example

import requests

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

Response

{
  "id": 34,
  "title": "Global Launch Party 2025",
  "slug": "global-launch-party-2025-34",
  "description": "Eum sub tametsi omnis comparo utroque spiculum valetudo adfectus. Ustulo maiores cunabula tollo. Acies amitto cicuta barba canonicus angulus creber.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2026-07-20T21:36:30.352Z",
  "endAt": "2026-07-21T02:13:59.193Z",
  "organizerUserId": 131,
  "attendeeCount": 546,
  "createdAt": "2026-02-02T07:06:40.344Z",
  "updatedAt": "2026-03-17T23:28:25.982Z"
}