example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #494

May
28
Thu

Security Training

4:19 AM – 6:34 AM

Google Meet

Dedico vacuus calamitas trepide ratione demo vobis avaritia suppellex ullus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 494,
  "ownerUserId": 202,
  "title": "Security Training",
  "description": "Dedico vacuus calamitas trepide ratione demo vobis avaritia suppellex ullus.",
  "startAt": "2026-05-28T04:19:47.975Z",
  "endAt": "2026-05-28T06:34:50.448Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    108,
    233
  ],
  "createdAt": "2026-05-05T05:40:17.779Z",
  "updatedAt": "2026-05-06T04:38:42.601Z"
}