Jun
22
Sun
Global Sprint 2026
11:21 PM – 10:53 AM
Online
767 attending
Subiungo aer solus capillus trans abeo. Bellicus caste deputo custodia doloribus pauper atrox. Ipsam tactus amo crapula communis sui ut illum.
events / #12
11:21 PM – 10:53 AM
Online
767 attending
Subiungo aer solus capillus trans abeo. Bellicus caste deputo custodia doloribus pauper atrox. Ipsam tactus amo crapula communis sui ut illum.
curl -sS \
"https://example-data.com/api/v1/events/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/12"
);
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/12"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/12"
)
event = res.json() {
"id": 12,
"title": "Global Sprint 2026",
"slug": "global-sprint-2026-12",
"description": "Subiungo aer solus capillus trans abeo. Bellicus caste deputo custodia doloribus pauper atrox. Ipsam tactus amo crapula communis sui ut illum.",
"location": "Online",
"isOnline": true,
"startAt": "2025-06-22T23:21:53.502Z",
"endAt": "2025-06-23T10:53:47.637Z",
"organizerUserId": 155,
"attendeeCount": 767,
"createdAt": "2025-05-23T22:55:57.491Z",
"updatedAt": "2025-11-05T06:50:58.027Z"
}