example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #138

May
22
Fri

Budget Review

2:09 PM – 7:49 PM

Tametsi abutor bestia articulus vinculum recusandae accusamus natus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 138,
  "ownerUserId": 58,
  "title": "Budget Review",
  "description": "Tametsi abutor bestia articulus vinculum recusandae accusamus natus.",
  "startAt": "2026-05-22T14:09:06.864Z",
  "endAt": "2026-05-22T19:49:28.578Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    28,
    76,
    177,
    249,
    80
  ],
  "createdAt": "2026-04-07T11:42:00.278Z",
  "updatedAt": "2026-05-09T18:43:36.301Z"
}