Jul
1
Wed
Team Standup
2:03 AM – 2:03 AM
Office - Floor 3
Depopulo adflicto vel.
Overview
calendar-events / #268
2:03 AM – 2:03 AM
Office - Floor 3
Depopulo adflicto vel.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/268" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/268" ); 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/268"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/268"
)
calendar_event = res.json() Response
{
"id": 268,
"ownerUserId": 114,
"title": "Team Standup",
"description": "Depopulo adflicto vel.",
"startAt": "2026-07-01T02:03:45.779Z",
"endAt": "2026-07-02T02:03:45.779Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-04-21T06:14:29.798Z",
"updatedAt": "2026-04-23T01:03:26.154Z"
}