Sep
22
Tue
Community Sprint 2026
3:54 PM – 12:51 PM
Chicago, IL
321 attending
Comedo commodo vulpes aliqua colligo contabesco sperno. Adamo advoco certe tabella depraedor est delinquo audio. Vester clamo auctus peccatus pauci.
Overview
events / #133
3:54 PM – 12:51 PM
Chicago, IL
321 attending
Comedo commodo vulpes aliqua colligo contabesco sperno. Adamo advoco certe tabella depraedor est delinquo audio. Vester clamo auctus peccatus pauci.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/133" ); 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/133"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/133"
)
event = res.json() Response
{
"id": 133,
"title": "Community Sprint 2026",
"slug": "community-sprint-2026-133",
"description": "Comedo commodo vulpes aliqua colligo contabesco sperno. Adamo advoco certe tabella depraedor est delinquo audio. Vester clamo auctus peccatus pauci.",
"location": "Chicago, IL",
"isOnline": false,
"startAt": "2026-09-22T15:54:02.550Z",
"endAt": "2026-09-23T12:51:35.108Z",
"organizerUserId": 86,
"attendeeCount": 321,
"createdAt": "2025-12-12T07:48:22.529Z",
"updatedAt": "2026-05-04T16:58:21.321Z"
}