Mar
21
Sat
Team Lunch
4:44 PM – 6:35 PM
Rooftop
Viriliter stipes cena decumbo ager volup pectus.
Overview
calendar-events / #582
4:44 PM – 6:35 PM
Rooftop
Viriliter stipes cena decumbo ager volup pectus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/582" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/582" ); 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/582"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/582"
)
calendar_event = res.json() Response
{
"id": 582,
"ownerUserId": 241,
"title": "Team Lunch",
"description": "Viriliter stipes cena decumbo ager volup pectus.",
"startAt": "2026-03-21T16:44:36.680Z",
"endAt": "2026-03-21T18:35:29.138Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
19,
18,
199
],
"createdAt": "2026-03-23T22:34:39.706Z",
"updatedAt": "2026-04-21T23:57:03.488Z"
}