Jan
19
Tue
Virtual Sprint 2026
1:37 PM – 1:56 PM
Online
464 attending
Ara attero molestias cribro corona subito tepidus. Adopto sponte trepide adversus vociferor bos id vivo accusamus. Trepide bibo beneficium amita veniam.
events / #114
1:37 PM – 1:56 PM
Online
464 attending
Ara attero molestias cribro corona subito tepidus. Adopto sponte trepide adversus vociferor bos id vivo accusamus. Trepide bibo beneficium amita veniam.
curl -sS \
"https://example-data.com/api/v1/events/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/114"
);
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/114"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/114"
)
event = res.json() {
"id": 114,
"title": "Virtual Sprint 2026",
"slug": "virtual-sprint-2026-114",
"description": "Ara attero molestias cribro corona subito tepidus. Adopto sponte trepide adversus vociferor bos id vivo accusamus. Trepide bibo beneficium amita veniam.",
"location": "Online",
"isOnline": true,
"startAt": "2027-01-19T13:37:53.992Z",
"endAt": "2027-01-20T13:56:57.806Z",
"organizerUserId": 237,
"attendeeCount": 464,
"createdAt": "2025-09-17T06:05:25.093Z",
"updatedAt": "2025-11-26T07:25:08.924Z"
}