Dec
12
Sat
Annual Workshop 2025
10:05 PM – 5:27 AM
Boston, MA
219 attending
Thema autem comprehendo. Tum torqueo speciosus alius minima aspernatur vilitas vulpes toties tracto. Auctor cuius sopor.
events / #47
10:05 PM – 5:27 AM
Boston, MA
219 attending
Thema autem comprehendo. Tum torqueo speciosus alius minima aspernatur vilitas vulpes toties tracto. Auctor cuius sopor.
curl -sS \
"https://example-data.com/api/v1/events/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/47"
);
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/47"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/47"
)
event = res.json() {
"id": 47,
"title": "Annual Workshop 2025",
"slug": "annual-workshop-2025-47",
"description": "Thema autem comprehendo. Tum torqueo speciosus alius minima aspernatur vilitas vulpes toties tracto. Auctor cuius sopor.",
"location": "Boston, MA",
"isOnline": false,
"startAt": "2026-12-12T22:05:58.795Z",
"endAt": "2026-12-13T05:27:31.471Z",
"organizerUserId": 32,
"attendeeCount": 219,
"createdAt": "2025-12-17T09:42:09.452Z",
"updatedAt": "2026-02-11T06:22:21.821Z"
}