Jul
7
Tue
Design Critique
3:43 PM – 3:43 PM
Cafeteria
Decerno conscendo denego utor nisi thorax pariatur incidunt tumultus.
Overview
calendar-events / #482
3:43 PM – 3:43 PM
Cafeteria
Decerno conscendo denego utor nisi thorax pariatur incidunt tumultus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/482" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/482" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/482"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/482"
)
calendar_event = res.json() Response
{
"id": 482,
"ownerUserId": 197,
"title": "Design Critique",
"description": "Decerno conscendo denego utor nisi thorax pariatur incidunt tumultus.",
"startAt": "2026-07-07T15:43:35.563Z",
"endAt": "2026-07-08T15:43:35.563Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
232,
14
],
"createdAt": "2026-04-01T04:16:50.328Z",
"updatedAt": "2026-04-11T02:39:20.245Z"
}