May
22
Fri
Hiring Interview
8:28 PM – 3:08 AM
Pecto compello colligo testimonium temeritas cito sursum deserunt quae.
Overview
calendar-events / #513
8:28 PM – 3:08 AM
Pecto compello colligo testimonium temeritas cito sursum deserunt quae.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/513" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/513" ); 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/513"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/513"
)
calendar_event = res.json() Response
{
"id": 513,
"ownerUserId": 215,
"title": "Hiring Interview",
"description": "Pecto compello colligo testimonium temeritas cito sursum deserunt quae.",
"startAt": "2026-05-22T20:28:40.412Z",
"endAt": "2026-05-23T03:08:01.457Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
12,
122
],
"createdAt": "2026-03-29T22:58:48.237Z",
"updatedAt": "2026-04-19T01:24:37.261Z"
}