Jul
14
Tue
Team Lunch
12:50 PM – 2:49 PM
Google Meet
Nisi cinis dolorum voveo abstergo turpis causa angulus.
Overview
calendar-events / #153
12:50 PM – 2:49 PM
Google Meet
Nisi cinis dolorum voveo abstergo turpis causa angulus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/153" ); 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/153"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/153"
)
calendar_event = res.json() Response
{
"id": 153,
"ownerUserId": 65,
"title": "Team Lunch",
"description": "Nisi cinis dolorum voveo abstergo turpis causa angulus.",
"startAt": "2026-07-14T12:50:12.924Z",
"endAt": "2026-07-14T14:49:19.488Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
20,
136,
180,
152,
32
],
"createdAt": "2026-05-01T14:47:37.693Z",
"updatedAt": "2026-05-19T09:51:53.259Z"
}