example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #556

Aug
9
Sun

Quarterly Review

6:11 AM – 11:07 AM

Rooftop

Temporibus vaco custodia tumultus viriliter subito capto volup abbas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 556,
  "ownerUserId": 233,
  "title": "Quarterly Review",
  "description": "Temporibus vaco custodia tumultus viriliter subito capto volup abbas.",
  "startAt": "2026-08-09T06:11:40.079Z",
  "endAt": "2026-08-09T11:07:17.195Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    163
  ],
  "createdAt": "2026-04-16T00:29:00.379Z",
  "updatedAt": "2026-04-16T20:29:17.472Z"
}