Jun
24
Wed
Team Lunch
4:31 PM – 12:18 AM
Cur comis utilis suasoria vesco turba depono tondeo vicissitudo deorsum.
Overview
calendar-events / #251
4:31 PM – 12:18 AM
Cur comis utilis suasoria vesco turba depono tondeo vicissitudo deorsum.
Team Lunch
4:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/251" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/251" ); 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/251"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/251"
)
calendar_event = res.json() Response
{
"id": 251,
"ownerUserId": 108,
"title": "Team Lunch",
"description": "Cur comis utilis suasoria vesco turba depono tondeo vicissitudo deorsum.",
"startAt": "2026-06-24T16:31:23.063Z",
"endAt": "2026-06-25T00:18:29.602Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
99,
168,
183,
121,
50
],
"createdAt": "2026-04-14T16:33:48.648Z",
"updatedAt": "2026-04-25T14:34:01.810Z"
}