May
23
Sat
Team Standup
1:09 AM – 7:44 AM
Rooftop
Adamo ater alter.
Overview
calendar-events / #126
1:09 AM – 7:44 AM
Rooftop
Adamo ater alter.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/126" ); 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/126"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/126"
)
calendar_event = res.json() Response
{
"id": 126,
"ownerUserId": 53,
"title": "Team Standup",
"description": "Adamo ater alter.",
"startAt": "2026-05-23T01:09:49.118Z",
"endAt": "2026-05-23T07:44:46.543Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
202,
21,
217,
121,
177
],
"createdAt": "2026-04-19T19:00:38.606Z",
"updatedAt": "2026-04-28T19:27:58.776Z"
}