Mar
22
Sun
Team Lunch
12:37 AM – 6:27 AM
Conference Room A
Adstringo ara averto urbs aspernatur spoliatio ullam cursim tamdiu enim.
Overview
calendar-events / #159
12:37 AM – 6:27 AM
Conference Room A
Adstringo ara averto urbs aspernatur spoliatio ullam cursim tamdiu enim.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/159" ); 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/159"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/159"
)
calendar_event = res.json() Response
{
"id": 159,
"ownerUserId": 68,
"title": "Team Lunch",
"description": "Adstringo ara averto urbs aspernatur spoliatio ullam cursim tamdiu enim.",
"startAt": "2026-03-22T00:37:47.529Z",
"endAt": "2026-03-22T06:27:32.054Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-03-26T13:42:32.494Z",
"updatedAt": "2026-04-08T17:52:10.560Z"
}