Jun
28
Sun
Team Lunch
11:20 AM – 11:20 AM
Cruciamentum arceo abbas apparatus temperantia solus subiungo.
Overview
calendar-events / #74
11:20 AM – 11:20 AM
Cruciamentum arceo abbas apparatus temperantia solus subiungo.
Team Lunch
11:20 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/74" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/74" ); 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/74"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/74"
)
calendar_event = res.json() Response
{
"id": 74,
"ownerUserId": 34,
"title": "Team Lunch",
"description": "Cruciamentum arceo abbas apparatus temperantia solus subiungo.",
"startAt": "2026-06-28T11:20:03.972Z",
"endAt": "2026-06-29T11:20:03.972Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-05-20T13:59:12.947Z",
"updatedAt": "2026-05-20T19:41:16.055Z"
}