example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #252

May
9
Sat

Budget Review

9:58 AM – 4:33 PM

Conference Room A

Suppono totus vallum catena solvo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 252,
  "ownerUserId": 108,
  "title": "Budget Review",
  "description": "Suppono totus vallum catena solvo.",
  "startAt": "2026-05-09T09:58:17.652Z",
  "endAt": "2026-05-09T16:33:49.361Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [],
  "createdAt": "2026-05-16T16:50:43.820Z",
  "updatedAt": "2026-05-20T18:35:42.697Z"
}