Aug
18
Tue
Team Lunch
8:37 PM – 8:37 PM
Google Meet
Decretum denuncio vespillo denuncio.
Overview
calendar-events / #569
8:37 PM – 8:37 PM
Google Meet
Decretum denuncio vespillo denuncio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/569" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/569" ); 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/569"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/569"
)
calendar_event = res.json() Response
{
"id": 569,
"ownerUserId": 237,
"title": "Team Lunch",
"description": "Decretum denuncio vespillo denuncio.",
"startAt": "2026-08-18T20:37:38.102Z",
"endAt": "2026-08-19T20:37:38.102Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
55,
85,
77,
136
],
"createdAt": "2026-02-28T10:15:58.835Z",
"updatedAt": "2026-03-17T04:48:48.769Z"
}