May
11
Mon
Premier Bootcamp 2025
3:30 PM – 4:14 AM
Online
135 attending
Acer ab suggero bellicus admoveo alter. Damno congregatio cattus tondeo considero vestrum. Cinis uberrime depono degusto convoco fugit adficio.
Overview
events / #138
3:30 PM – 4:14 AM
Online
135 attending
Acer ab suggero bellicus admoveo alter. Damno congregatio cattus tondeo considero vestrum. Cinis uberrime depono degusto convoco fugit adficio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/138" ); 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/138"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/138"
)
event = res.json() Response
{
"id": 138,
"title": "Premier Bootcamp 2025",
"slug": "premier-bootcamp-2025-138",
"description": "Acer ab suggero bellicus admoveo alter. Damno congregatio cattus tondeo considero vestrum. Cinis uberrime depono degusto convoco fugit adficio.",
"location": "Online",
"isOnline": true,
"startAt": "2026-05-11T15:30:41.694Z",
"endAt": "2026-05-13T04:14:23.403Z",
"organizerUserId": 58,
"attendeeCount": 135,
"createdAt": "2025-08-23T18:28:17.891Z",
"updatedAt": "2025-11-01T20:03:33.531Z"
}