example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #73

Mar
31
Tue

Budget Review

11:41 AM – 11:41 AM

Rooftop

Crinis delinquo corrupti arceo solutio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 73,
  "ownerUserId": 33,
  "title": "Budget Review",
  "description": "Crinis delinquo corrupti arceo solutio.",
  "startAt": "2026-03-31T11:41:37.499Z",
  "endAt": "2026-04-01T11:41:37.499Z",
  "isAllDay": true,
  "location": "Rooftop",
  "attendeeUserIds": [
    37,
    91,
    238,
    10,
    242
  ],
  "createdAt": "2026-03-27T09:54:20.235Z",
  "updatedAt": "2026-04-12T18:18:05.222Z"
}