example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #62

Jun
2
Tue

Architecture Review

10:11 AM – 5:56 PM

Trucido acerbitas aggredior comis cubicularis cubitum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 62,
  "ownerUserId": 29,
  "title": "Architecture Review",
  "description": "Trucido acerbitas aggredior comis cubicularis cubitum.",
  "startAt": "2026-06-02T10:11:13.549Z",
  "endAt": "2026-06-02T17:56:35.368Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    176
  ],
  "createdAt": "2026-03-03T07:53:50.811Z",
  "updatedAt": "2026-05-07T13:21:11.493Z"
}