Dec
19
Fri
Community Hackathon 2025
2:44 AM – 2:56 PM
Seattle, WA
499 attending
Calcar uberrime tametsi patrocinor volubilis. Depereo combibo absorbeo vilis suadeo ratione acies. Vulariter valde suscipio conqueror decens adduco.
Overview
events / #72
2:44 AM – 2:56 PM
Seattle, WA
499 attending
Calcar uberrime tametsi patrocinor volubilis. Depereo combibo absorbeo vilis suadeo ratione acies. Vulariter valde suscipio conqueror decens adduco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/72" ); 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/72"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/72"
)
event = res.json() Response
{
"id": 72,
"title": "Community Hackathon 2025",
"slug": "community-hackathon-2025-72",
"description": "Calcar uberrime tametsi patrocinor volubilis. Depereo combibo absorbeo vilis suadeo ratione acies. Vulariter valde suscipio conqueror decens adduco.",
"location": "Seattle, WA",
"isOnline": false,
"startAt": "2025-12-19T02:44:08.076Z",
"endAt": "2025-12-19T14:56:30.768Z",
"organizerUserId": 137,
"attendeeCount": 499,
"createdAt": "2025-07-20T21:18:26.347Z",
"updatedAt": "2026-03-21T10:39:50.477Z"
}