Jun
13
Fri
Open Bootcamp 2026
7:07 PM – 12:49 PM
New York, NY
218 attending
Aliquam demoror cavus itaque adulescens unde crebro defaeco patior tripudio. Vociferor arbitro antea subseco pectus. Corona accusator combibo.
Overview
events / #28
7:07 PM – 12:49 PM
New York, NY
218 attending
Aliquam demoror cavus itaque adulescens unde crebro defaeco patior tripudio. Vociferor arbitro antea subseco pectus. Corona accusator combibo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/28" ); 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/28"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/28"
)
event = res.json() Response
{
"id": 28,
"title": "Open Bootcamp 2026",
"slug": "open-bootcamp-2026-28",
"description": "Aliquam demoror cavus itaque adulescens unde crebro defaeco patior tripudio. Vociferor arbitro antea subseco pectus. Corona accusator combibo.",
"location": "New York, NY",
"isOnline": false,
"startAt": "2025-06-13T19:07:46.127Z",
"endAt": "2025-06-15T12:49:27.823Z",
"organizerUserId": 194,
"attendeeCount": 218,
"createdAt": "2025-11-28T09:49:20.767Z",
"updatedAt": "2026-02-27T07:22:41.417Z"
}