example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #574

Aug
2
Sun

Off-site Planning

4:51 PM – 9:30 PM

Conference Room B

Creta audentia derelinquo armarium corpus cimentarius basium debeo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 574,
  "ownerUserId": 239,
  "title": "Off-site Planning",
  "description": "Creta audentia derelinquo armarium corpus cimentarius basium debeo.",
  "startAt": "2026-08-02T16:51:45.938Z",
  "endAt": "2026-08-02T21:30:53.704Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    75,
    54
  ],
  "createdAt": "2026-02-28T03:15:11.716Z",
  "updatedAt": "2026-05-08T16:47:25.694Z"
}