example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #475

Aug
9
Sun

Product Review

7:16 PM – 9:39 PM

Cafeteria

Versus usque tandem accusantium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 475,
  "ownerUserId": 193,
  "title": "Product Review",
  "description": "Versus usque tandem accusantium.",
  "startAt": "2026-08-09T19:16:54.577Z",
  "endAt": "2026-08-09T21:39:08.691Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    111,
    57,
    3,
    245
  ],
  "createdAt": "2026-05-09T10:30:01.160Z",
  "updatedAt": "2026-05-21T06:00:08.304Z"
}