Mar
19
Thu
Team Lunch
4:44 PM – 10:35 PM
Amita civitas deduco collum cultura custodia usque.
Overview
calendar-events / #92
4:44 PM – 10:35 PM
Amita civitas deduco collum cultura custodia usque.
Team Lunch
4:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/92" ); 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/92"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/92"
)
calendar_event = res.json() Response
{
"id": 92,
"ownerUserId": 38,
"title": "Team Lunch",
"description": "Amita civitas deduco collum cultura custodia usque.",
"startAt": "2026-03-19T16:44:53.262Z",
"endAt": "2026-03-19T22:35:55.122Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
191,
154,
221
],
"createdAt": "2026-03-14T16:27:34.755Z",
"updatedAt": "2026-03-21T08:35:20.756Z"
}