Apr
5
Sun
Team Standup
2:55 PM – 5:17 PM
Uter tabesco ver valde strenuus usitas vitae sint aeternus.
Overview
calendar-events / #458
2:55 PM – 5:17 PM
Uter tabesco ver valde strenuus usitas vitae sint aeternus.
Team Standup
2:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/458" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/458" ); 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/458"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/458"
)
calendar_event = res.json() Response
{
"id": 458,
"ownerUserId": 186,
"title": "Team Standup",
"description": "Uter tabesco ver valde strenuus usitas vitae sint aeternus.",
"startAt": "2026-04-05T14:55:57.783Z",
"endAt": "2026-04-05T17:17:48.069Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-14T22:11:32.794Z",
"updatedAt": "2026-04-19T20:35:55.308Z"
}