Jul
22
Wed
Team Lunch
1:22 AM – 6:30 AM
Cafeteria
Ventosus laborum cicuta suffragium tergo terra conservo.
Overview
calendar-events / #183
1:22 AM – 6:30 AM
Cafeteria
Ventosus laborum cicuta suffragium tergo terra conservo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/183" ); 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/183"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/183"
)
calendar_event = res.json() Response
{
"id": 183,
"ownerUserId": 79,
"title": "Team Lunch",
"description": "Ventosus laborum cicuta suffragium tergo terra conservo.",
"startAt": "2026-07-22T01:22:16.939Z",
"endAt": "2026-07-22T06:30:12.136Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
54,
22,
89
],
"createdAt": "2026-05-02T15:59:25.545Z",
"updatedAt": "2026-05-14T20:32:59.720Z"
}