example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #285

Jul
13
Mon

Onboarding Session

11:44 PM – 11:44 PM

Zoom

Debilito thermae sum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 285,
  "ownerUserId": 120,
  "title": "Onboarding Session",
  "description": "Debilito thermae sum.",
  "startAt": "2026-07-13T23:44:00.883Z",
  "endAt": "2026-07-14T23:44:00.883Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    206,
    105,
    135,
    176,
    166
  ],
  "createdAt": "2026-05-05T11:58:38.842Z",
  "updatedAt": "2026-05-18T15:25:33.474Z"
}