example-data.com
Menu
Browse docs and collections

Overview

events / #41

Oct
21
Wed

Global Workshop 2026

4:38 PM – 2:25 AM

Online

879 attending

Aperiam angulus cetera. Averto suus supplanto solvo tenuis. Dolores optio stabilis capillus cimentarius tabula spargo demulceo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 41,
  "title": "Global Workshop 2026",
  "slug": "global-workshop-2026-41",
  "description": "Aperiam angulus cetera. Averto suus supplanto solvo tenuis. Dolores optio stabilis capillus cimentarius tabula spargo demulceo.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-10-21T16:38:48.320Z",
  "endAt": "2026-10-22T02:25:01.261Z",
  "organizerUserId": 6,
  "attendeeCount": 879,
  "createdAt": "2025-08-26T02:45:11.001Z",
  "updatedAt": "2025-11-23T00:35:34.255Z"
}