example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #217

Jul
19
Sun

Security Training

4:16 AM – 7:53 AM

Creptio vigilo vesica tero sono deripio vulgo stultus angustus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 217,
  "ownerUserId": 94,
  "title": "Security Training",
  "description": "Creptio vigilo vesica tero sono deripio vulgo stultus angustus.",
  "startAt": "2026-07-19T04:16:18.352Z",
  "endAt": "2026-07-19T07:53:42.762Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    90
  ],
  "createdAt": "2026-05-07T11:34:50.306Z",
  "updatedAt": "2026-05-21T16:55:34.355Z"
}