Apr
21
Tue
Customer Interview
7:03 AM – 7:03 AM
Cafeteria
Sopor derelinquo accusamus conturbo cras desipio ustulo compello.
Overview
calendar-events / #337
7:03 AM – 7:03 AM
Cafeteria
Sopor derelinquo accusamus conturbo cras desipio ustulo compello.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/337" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/337" ); 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/337"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/337"
)
calendar_event = res.json() Response
{
"id": 337,
"ownerUserId": 140,
"title": "Customer Interview",
"description": "Sopor derelinquo accusamus conturbo cras desipio ustulo compello.",
"startAt": "2026-04-21T07:03:03.654Z",
"endAt": "2026-04-22T07:03:03.654Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
95,
41
],
"createdAt": "2026-05-14T22:47:53.435Z",
"updatedAt": "2026-05-20T22:04:33.456Z"
}