Apr
4
Sat
Team Standup
11:28 PM – 1:41 AM
Rooftop
Studio coerceo abduco synagoga delibero.
Overview
calendar-events / #215
11:28 PM – 1:41 AM
Rooftop
Studio coerceo abduco synagoga delibero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/215" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/215" ); 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/215"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/215"
)
calendar_event = res.json() Response
{
"id": 215,
"ownerUserId": 93,
"title": "Team Standup",
"description": "Studio coerceo abduco synagoga delibero.",
"startAt": "2026-04-04T23:28:17.917Z",
"endAt": "2026-04-05T01:41:36.257Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
210,
151
],
"createdAt": "2026-03-07T19:36:57.646Z",
"updatedAt": "2026-05-17T23:25:42.650Z"
}