Jul
17
Fri
Team Standup
7:24 PM – 9:18 PM
Rooftop
Cubicularis amitto super cotidie textus.
Overview
calendar-events / #96
7:24 PM – 9:18 PM
Rooftop
Cubicularis amitto super cotidie textus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/96" ); 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/96"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/96"
)
calendar_event = res.json() Response
{
"id": 96,
"ownerUserId": 39,
"title": "Team Standup",
"description": "Cubicularis amitto super cotidie textus.",
"startAt": "2026-07-17T19:24:36.435Z",
"endAt": "2026-07-17T21:18:45.696Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
110,
1,
248,
21
],
"createdAt": "2026-04-01T08:27:51.035Z",
"updatedAt": "2026-04-29T19:50:18.792Z"
}