example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #528

Jun
11
Thu

Quarterly Review

6:25 AM – 11:59 AM

Conference Room B

Iste ventito cerno beatae harum xiphias substantia tergiversatio amo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 528,
  "ownerUserId": 220,
  "title": "Quarterly Review",
  "description": "Iste ventito cerno beatae harum xiphias substantia tergiversatio amo.",
  "startAt": "2026-06-11T06:25:50.269Z",
  "endAt": "2026-06-11T11:59:54.411Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    127,
    215,
    179
  ],
  "createdAt": "2026-03-06T19:05:12.954Z",
  "updatedAt": "2026-04-24T17:23:23.529Z"
}