May
21
Thu
Team Standup
8:22 AM – 1:35 PM
Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.
Overview
calendar-events / #220
8:22 AM – 1:35 PM
Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.
Team Standup
8:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/220" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/220" ); 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/220"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/220"
)
calendar_event = res.json() Response
{
"id": 220,
"ownerUserId": 94,
"title": "Team Standup",
"description": "Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.",
"startAt": "2026-05-21T08:22:37.883Z",
"endAt": "2026-05-21T13:35:55.762Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
90
],
"createdAt": "2026-04-02T08:26:27.719Z",
"updatedAt": "2026-04-22T13:40:44.170Z"
}