Apr
6
Mon
Team Standup
3:53 AM – 5:37 AM
Conference Room B
Fugiat labore allatus arma valeo.
Overview
calendar-events / #37
3:53 AM – 5:37 AM
Conference Room B
Fugiat labore allatus arma valeo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/37" ); 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/37"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/37"
)
calendar_event = res.json() Response
{
"id": 37,
"ownerUserId": 20,
"title": "Team Standup",
"description": "Fugiat labore allatus arma valeo.",
"startAt": "2026-04-06T03:53:08.305Z",
"endAt": "2026-04-06T05:37:51.700Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
155,
191,
222,
188,
113
],
"createdAt": "2026-03-10T00:18:05.077Z",
"updatedAt": "2026-03-24T15:30:20.914Z"
}