example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #453

May
22
Fri

Architecture Review

4:00 PM – 4:00 PM

Rooftop

Victus volaticus videlicet abstergo consuasor texo ancilla absque assentator.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 453,
  "ownerUserId": 185,
  "title": "Architecture Review",
  "description": "Victus volaticus videlicet abstergo consuasor texo ancilla absque assentator.",
  "startAt": "2026-05-22T16:00:37.844Z",
  "endAt": "2026-05-23T16:00:37.844Z",
  "isAllDay": true,
  "location": "Rooftop",
  "attendeeUserIds": [
    231
  ],
  "createdAt": "2026-03-24T19:06:56.794Z",
  "updatedAt": "2026-04-28T18:45:07.681Z"
}