May
4
Mon
Retrospective
7:42 PM – 12:11 AM
Error tego traho acer.
Overview
calendar-events / #124
7:42 PM – 12:11 AM
Error tego traho acer.
Retrospective
7:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/124" ); 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/124"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/124"
)
calendar_event = res.json() Response
{
"id": 124,
"ownerUserId": 52,
"title": "Retrospective",
"description": "Error tego traho acer.",
"startAt": "2026-05-04T19:42:04.053Z",
"endAt": "2026-05-05T00:11:43.415Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
179
],
"createdAt": "2026-03-24T11:23:16.489Z",
"updatedAt": "2026-05-12T08:00:56.472Z"
}