Mar
28
Sat
Team Lunch
11:32 AM – 11:32 AM
Office - Floor 3
Nam tabgo causa testimonium aegre ver alienus inventore cuppedia totam.
Overview
calendar-events / #137
11:32 AM – 11:32 AM
Office - Floor 3
Nam tabgo causa testimonium aegre ver alienus inventore cuppedia totam.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/137" ); 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/137"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/137"
)
calendar_event = res.json() Response
{
"id": 137,
"ownerUserId": 57,
"title": "Team Lunch",
"description": "Nam tabgo causa testimonium aegre ver alienus inventore cuppedia totam.",
"startAt": "2026-03-28T11:32:28.416Z",
"endAt": "2026-03-29T11:32:28.416Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
49,
35,
39,
109,
155
],
"createdAt": "2026-03-16T20:35:38.502Z",
"updatedAt": "2026-03-17T09:31:46.384Z"
}