Sep
17
Wed
Premier Sprint 2025
8:21 AM – 11:14 AM
Online
493 attending
Thymum optio thema paulatim ea deporto aggredior venia. Villa ocer theologus demens cui. Tempore tactus verto apto cur curia vel surculus caecus.
events / #24
8:21 AM – 11:14 AM
Online
493 attending
Thymum optio thema paulatim ea deporto aggredior venia. Villa ocer theologus demens cui. Tempore tactus verto apto cur curia vel surculus caecus.
curl -sS \
"https://example-data.com/api/v1/events/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/24"
);
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/24"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/24"
)
event = res.json() {
"id": 24,
"title": "Premier Sprint 2025",
"slug": "premier-sprint-2025-24",
"description": "Thymum optio thema paulatim ea deporto aggredior venia. Villa ocer theologus demens cui. Tempore tactus verto apto cur curia vel surculus caecus.",
"location": "Online",
"isOnline": true,
"startAt": "2025-09-17T08:21:31.478Z",
"endAt": "2025-09-18T11:14:38.145Z",
"organizerUserId": 228,
"attendeeCount": 493,
"createdAt": "2026-02-14T13:10:44.790Z",
"updatedAt": "2026-03-27T21:30:22.239Z"
}