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.
events / #41
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.
curl -sS \
"https://example-data.com/api/v1/events/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/41"
);
const event = await res.json();import type { Event } from "https://example-data.com/types/events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/events/41"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/41"
)
event = res.json() {
"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"
}