example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #156

Jun
9
Tue

Security Training

4:36 PM – 4:36 PM

Zoom

Aspicio vestrum conculco assentator temptatio acidus vestrum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 156,
  "ownerUserId": 67,
  "title": "Security Training",
  "description": "Aspicio vestrum conculco assentator temptatio acidus vestrum.",
  "startAt": "2026-06-09T16:36:25.695Z",
  "endAt": "2026-06-10T16:36:25.695Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    184,
    169,
    139,
    145
  ],
  "createdAt": "2026-03-31T20:34:11.711Z",
  "updatedAt": "2026-05-18T09:30:11.905Z"
}