example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #316

Apr
15
Wed

Design Critique

9:29 PM – 4:18 AM

Conference Room A

Ciminatio capillus arcus substantia vigor consectetur vereor pauper aqua.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 316,
  "ownerUserId": 133,
  "title": "Design Critique",
  "description": "Ciminatio capillus arcus substantia vigor consectetur vereor pauper aqua.",
  "startAt": "2026-04-15T21:29:29.106Z",
  "endAt": "2026-04-16T04:18:01.760Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    59,
    198,
    2,
    155,
    129
  ],
  "createdAt": "2026-03-21T09:22:01.374Z",
  "updatedAt": "2026-05-09T18:36:35.676Z"
}