Apr
15
Wed
Team Lunch
1:20 PM – 6:29 PM
Spiculum tutis summopere centum aer debilito.
Overview
calendar-events / #599
1:20 PM – 6:29 PM
Spiculum tutis summopere centum aer debilito.
Team Lunch
1:20 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/599" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/599" ); 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/599"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/599"
)
calendar_event = res.json() Response
{
"id": 599,
"ownerUserId": 250,
"title": "Team Lunch",
"description": "Spiculum tutis summopere centum aer debilito.",
"startAt": "2026-04-15T13:20:25.469Z",
"endAt": "2026-04-15T18:29:45.478Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
221,
171,
159
],
"createdAt": "2026-05-05T02:31:43.831Z",
"updatedAt": "2026-05-13T07:04:44.418Z"
}