example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #243

May
28
Thu

Onboarding Session

2:03 AM – 4:00 AM

Spoliatio supplanto cupiditas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 243,
  "ownerUserId": 104,
  "title": "Onboarding Session",
  "description": "Spoliatio supplanto cupiditas.",
  "startAt": "2026-05-28T02:03:26.042Z",
  "endAt": "2026-05-28T04:00:02.006Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    116,
    124
  ],
  "createdAt": "2026-05-02T21:18:34.647Z",
  "updatedAt": "2026-05-12T07:41:41.087Z"
}