example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #241

Jun
26
Fri

Strategy Workshop

10:06 AM – 1:49 PM

Office - Floor 3

Aeneus deinde officia quisquam thesis alo pauci aliquid vesper id.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 241,
  "ownerUserId": 103,
  "title": "Strategy Workshop",
  "description": "Aeneus deinde officia quisquam thesis alo pauci aliquid vesper id.",
  "startAt": "2026-06-26T10:06:31.093Z",
  "endAt": "2026-06-26T13:49:42.284Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    231,
    23,
    198,
    234,
    9
  ],
  "createdAt": "2026-04-19T05:49:38.471Z",
  "updatedAt": "2026-05-10T16:44:43.719Z"
}