example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #415

Aug
15
Sat

Security Training

8:57 PM – 8:57 PM

Cafeteria

Absconditus soluta eveniet conicio studio celo contigo umquam acsi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 415,
  "ownerUserId": 171,
  "title": "Security Training",
  "description": "Absconditus soluta eveniet conicio studio celo contigo umquam acsi.",
  "startAt": "2026-08-15T20:57:27.426Z",
  "endAt": "2026-08-16T20:57:27.426Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    142,
    174
  ],
  "createdAt": "2026-02-24T21:02:03.236Z",
  "updatedAt": "2026-03-26T03:55:41.850Z"
}