example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #530

Jul
9
Thu

Onboarding Session

4:17 PM – 11:34 PM

Office - Floor 3

Molestiae ceno terminatio tabgo utique custodia venio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 530,
  "ownerUserId": 221,
  "title": "Onboarding Session",
  "description": "Molestiae ceno terminatio tabgo utique custodia venio.",
  "startAt": "2026-07-09T16:17:09.800Z",
  "endAt": "2026-07-09T23:34:41.535Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    124,
    105,
    70,
    145,
    23
  ],
  "createdAt": "2026-04-09T12:16:38.016Z",
  "updatedAt": "2026-04-23T21:05:58.955Z"
}