May
4
Mon
Budget Review
7:18 AM – 11:05 AM
Rooftop
Arca conspergo corrigo peior sto communis corroboro patrocinor causa.
Overview
calendar-events / #249
7:18 AM – 11:05 AM
Rooftop
Arca conspergo corrigo peior sto communis corroboro patrocinor causa.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/249" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/249" ); 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/249"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/249"
)
calendar_event = res.json() Response
{
"id": 249,
"ownerUserId": 107,
"title": "Budget Review",
"description": "Arca conspergo corrigo peior sto communis corroboro patrocinor causa.",
"startAt": "2026-05-04T07:18:58.172Z",
"endAt": "2026-05-04T11:05:47.174Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [],
"createdAt": "2026-04-26T04:53:05.089Z",
"updatedAt": "2026-05-05T23:23:33.082Z"
}