example-data.com
Menu
Browse docs and collections

Overview

events / #33

Oct
7
Tue

Global Launch Party 2025

3:49 AM – 6:23 PM

Chicago, IL

134 attending

Spes sustineo altus cupiditate delibero accusamus. Demulceo vulgaris dedico cupiditas. Amaritudo bonus adflicto correptius.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 33,
  "title": "Global Launch Party 2025",
  "slug": "global-launch-party-2025-33",
  "description": "Spes sustineo altus cupiditate delibero accusamus. Demulceo vulgaris dedico cupiditas. Amaritudo bonus adflicto correptius.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2025-10-07T03:49:17.515Z",
  "endAt": "2025-10-07T18:23:24.323Z",
  "organizerUserId": 72,
  "attendeeCount": 134,
  "createdAt": "2025-08-21T19:32:44.806Z",
  "updatedAt": "2026-03-01T20:13:07.151Z"
}