Feb
24
Tue
Team Lunch
11:53 AM – 5:43 PM
Google Meet
Caterva attero depraedor.
calendar-events / #18
11:53 AM – 5:43 PM
Google Meet
Caterva attero depraedor.
curl -sS \
"https://example-data.com/api/v1/calendar-events/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/18"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/18"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/18"
)
calendar_event = res.json() {
"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"
}