example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #584

Mar
16
Mon

Quarterly Review

2:55 AM – 5:59 AM

Office - Floor 3

Nulla deleo sed solitudo illo vaco subito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 584,
  "ownerUserId": 242,
  "title": "Quarterly Review",
  "description": "Nulla deleo sed solitudo illo vaco subito.",
  "startAt": "2026-03-16T02:55:53.879Z",
  "endAt": "2026-03-16T05:59:15.934Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    174,
    229,
    234,
    161,
    139
  ],
  "createdAt": "2026-04-23T16:20:57.713Z",
  "updatedAt": "2026-05-06T18:42:06.482Z"
}