example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #471

Jul
25
Sat

Onboarding Session

8:53 AM – 3:43 PM

Rooftop

Sophismata cimentarius advenio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 471,
  "ownerUserId": 191,
  "title": "Onboarding Session",
  "description": "Sophismata cimentarius advenio.",
  "startAt": "2026-07-25T08:53:27.898Z",
  "endAt": "2026-07-25T15:43:58.514Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [],
  "createdAt": "2026-05-16T07:03:35.419Z",
  "updatedAt": "2026-05-17T22:52:30.588Z"
}