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.
Overview
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.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/12" ); const event = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/events.d.ts https://example-data.com/types/events.d.ts
import type { Event } from "./types/events";
const res = await fetch(
"https://example-data.com/api/v1/events/12"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/12"
)
event = res.json() Response
{
"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"
}