Nov
1
Sat
Community Bootcamp 2025
2:07 PM – 5:24 AM
New York, NY
61 attending
Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.
Overview
events / #122
2:07 PM – 5:24 AM
New York, NY
61 attending
Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/122" ); 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/122"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/122"
)
event = res.json() Response
{
"id": 122,
"title": "Community Bootcamp 2025",
"slug": "community-bootcamp-2025-122",
"description": "Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.",
"location": "New York, NY",
"isOnline": false,
"startAt": "2025-11-01T14:07:48.201Z",
"endAt": "2025-11-03T05:24:35.542Z",
"organizerUserId": 46,
"attendeeCount": 61,
"createdAt": "2025-05-29T11:32:24.327Z",
"updatedAt": "2025-12-04T14:24:45.503Z"
}