example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #290

Feb
27
Fri

Budget Review

6:19 AM – 11:33 AM

Conference Room A

Tertius appono voluptate.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 290,
  "ownerUserId": 123,
  "title": "Budget Review",
  "description": "Tertius appono voluptate.",
  "startAt": "2026-02-27T06:19:09.677Z",
  "endAt": "2026-02-27T11:33:53.149Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    226
  ],
  "createdAt": "2026-04-28T15:01:45.880Z",
  "updatedAt": "2026-05-21T07:20:06.388Z"
}