Jul
26
Sun
Design Critique
11:50 AM – 7:22 PM
Rooftop
Cado cavus valetudo cavus terga subseco certus.
Overview
calendar-events / #41
11:50 AM – 7:22 PM
Rooftop
Cado cavus valetudo cavus terga subseco certus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/41" ); 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/41"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/41"
)
calendar_event = res.json() Response
{
"id": 41,
"ownerUserId": 22,
"title": "Design Critique",
"description": "Cado cavus valetudo cavus terga subseco certus.",
"startAt": "2026-07-26T11:50:51.703Z",
"endAt": "2026-07-26T19:22:58.752Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
31,
28,
154
],
"createdAt": "2026-05-16T01:04:13.595Z",
"updatedAt": "2026-05-16T15:02:59.559Z"
}