Jun
17
Wed
Team Standup
12:15 PM – 1:27 PM
Zoom
Similique aureus thymum.
Overview
calendar-events / #497
12:15 PM – 1:27 PM
Zoom
Similique aureus thymum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/497" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/497" ); 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/497"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/497"
)
calendar_event = res.json() Response
{
"id": 497,
"ownerUserId": 204,
"title": "Team Standup",
"description": "Similique aureus thymum.",
"startAt": "2026-06-17T12:15:03.603Z",
"endAt": "2026-06-17T13:27:59.397Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
54,
118,
96,
163
],
"createdAt": "2026-05-01T16:10:57.744Z",
"updatedAt": "2026-05-13T01:25:35.769Z"
}