example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #194

Feb
21
Sat

Quarterly Review

4:39 PM – 9:37 PM

Cafeteria

Somniculosus voro careo beatus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 194,
  "ownerUserId": 84,
  "title": "Quarterly Review",
  "description": "Somniculosus voro careo beatus.",
  "startAt": "2026-02-21T16:39:05.549Z",
  "endAt": "2026-02-21T21:37:30.990Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    71,
    37,
    204
  ],
  "createdAt": "2026-03-15T05:50:52.651Z",
  "updatedAt": "2026-03-29T13:01:54.639Z"
}