example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #416

Jun
18
Thu

Architecture Review

11:35 PM – 3:46 AM

Caritas tripudio callide adsum curatio sumo succedo candidus.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/calendar-events/416" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/416"
);
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/416"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/416"
)
calendar_event = res.json()

Response

{
  "id": 416,
  "ownerUserId": 171,
  "title": "Architecture Review",
  "description": "Caritas tripudio callide adsum curatio sumo succedo candidus.",
  "startAt": "2026-06-18T23:35:42.713Z",
  "endAt": "2026-06-19T03:46:37.948Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-04-01T08:35:12.953Z",
  "updatedAt": "2026-05-01T16:09:01.845Z"
}