May
13
Wed
Team Lunch
1:34 PM – 8:16 PM
Google Meet
Decipio crinis trepide caput depono eius.
Overview
calendar-events / #514
1:34 PM – 8:16 PM
Google Meet
Decipio crinis trepide caput depono eius.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/514" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/514" ); 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/514"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/514"
)
calendar_event = res.json() Response
{
"id": 514,
"ownerUserId": 215,
"title": "Team Lunch",
"description": "Decipio crinis trepide caput depono eius.",
"startAt": "2026-05-13T13:34:57.730Z",
"endAt": "2026-05-13T20:16:00.470Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
65,
13,
249,
222,
163
],
"createdAt": "2026-03-01T07:24:40.629Z",
"updatedAt": "2026-05-07T16:37:44.887Z"
}