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.
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.
curl -sS \
"https://example-data.com/api/v1/events/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/138"
);
const event = await res.json();import type { Event } from "https://example-data.com/types/events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/events/138"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/138"
)
event = res.json() {
"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"
}