Feb
26
Thu
Team Standup
11:39 AM – 7:11 PM
Sulum advoco amplexus commemoro.
Overview
calendar-events / #204
11:39 AM – 7:11 PM
Sulum advoco amplexus commemoro.
Team Standup
11:39 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/204" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/204" ); 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/204"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/204"
)
calendar_event = res.json() Response
{
"id": 204,
"ownerUserId": 89,
"title": "Team Standup",
"description": "Sulum advoco amplexus commemoro.",
"startAt": "2026-02-26T11:39:05.333Z",
"endAt": "2026-02-26T19:11:48.483Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
92,
138
],
"createdAt": "2026-03-16T12:18:42.537Z",
"updatedAt": "2026-03-17T12:06:17.133Z"
}