example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #104

Jun
23
Tue

Design Critique

9:19 AM – 3:06 PM

Claudeo aufero quae.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 104,
  "ownerUserId": 43,
  "title": "Design Critique",
  "description": "Claudeo aufero quae.",
  "startAt": "2026-06-23T09:19:35.697Z",
  "endAt": "2026-06-23T15:06:44.350Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    52,
    232
  ],
  "createdAt": "2026-05-06T22:29:24.652Z",
  "updatedAt": "2026-05-11T00:33:39.812Z"
}