Feb
27
Fri
Local Bootcamp 2026
7:00 PM – 5:02 PM
Online
34 attending
Ad cornu thymbra crinis aperiam nobis corrupti bibo. Delinquo virgo sol cena defessus illo. Sulum compono thesis tantum ea.
Overview
events / #76
7:00 PM – 5:02 PM
Online
34 attending
Ad cornu thymbra crinis aperiam nobis corrupti bibo. Delinquo virgo sol cena defessus illo. Sulum compono thesis tantum ea.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/76" ); 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/76"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/76"
)
event = res.json() Response
{
"id": 76,
"title": "Local Bootcamp 2026",
"slug": "local-bootcamp-2026-76",
"description": "Ad cornu thymbra crinis aperiam nobis corrupti bibo. Delinquo virgo sol cena defessus illo. Sulum compono thesis tantum ea.",
"location": "Online",
"isOnline": true,
"startAt": "2026-02-27T19:00:06.177Z",
"endAt": "2026-02-28T17:02:18.674Z",
"organizerUserId": 233,
"attendeeCount": 34,
"createdAt": "2025-06-27T18:21:49.836Z",
"updatedAt": "2025-10-28T23:14:21.105Z"
}