example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #312

Jun
17
Wed

Architecture Review

5:17 AM – 7:36 AM

Fuga pauci sufficio carmen canis studio perferendis amoveo suppono tabernus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 312,
  "ownerUserId": 130,
  "title": "Architecture Review",
  "description": "Fuga pauci sufficio carmen canis studio perferendis amoveo suppono tabernus.",
  "startAt": "2026-06-17T05:17:39.571Z",
  "endAt": "2026-06-17T07:36:34.651Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    103,
    212,
    141,
    62,
    185
  ],
  "createdAt": "2026-02-22T19:45:29.589Z",
  "updatedAt": "2026-05-15T19:51:44.653Z"
}