example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #575

Mar
19
Thu

Security Training

6:10 AM – 7:51 AM

Delicate cuppedia stultus correptius conspergo ab.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 575,
  "ownerUserId": 239,
  "title": "Security Training",
  "description": "Delicate cuppedia stultus correptius conspergo ab.",
  "startAt": "2026-03-19T06:10:31.791Z",
  "endAt": "2026-03-19T07:51:59.901Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    145,
    218,
    17,
    113
  ],
  "createdAt": "2026-04-21T07:13:58.005Z",
  "updatedAt": "2026-05-07T13:44:36.731Z"
}