Feb
24
Tue
Team Lunch
11:53 AM – 5:43 PM
Google Meet
Caterva attero depraedor.
Overview
calendar-events / #18
11:53 AM – 5:43 PM
Google Meet
Caterva attero depraedor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/18" ); 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/18"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/18"
)
calendar_event = res.json() Response
{
"id": 18,
"ownerUserId": 8,
"title": "Team Lunch",
"description": "Caterva attero depraedor.",
"startAt": "2026-02-24T11:53:12.752Z",
"endAt": "2026-02-24T17:43:46.905Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
79
],
"createdAt": "2026-02-22T00:38:16.613Z",
"updatedAt": "2026-04-08T05:51:20.109Z"
}