example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #358

Mar
3
Tue

Design Critique

4:46 PM – 4:46 PM

Appositus creator vae aperio tolero comedo copiose.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 358,
  "ownerUserId": 147,
  "title": "Design Critique",
  "description": "Appositus creator vae aperio tolero comedo copiose.",
  "startAt": "2026-03-03T16:46:03.398Z",
  "endAt": "2026-03-04T16:46:03.398Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    2,
    216,
    11,
    105,
    117
  ],
  "createdAt": "2026-03-07T11:27:50.625Z",
  "updatedAt": "2026-05-10T20:31:40.072Z"
}