example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #590

Aug
12
Wed

Security Training

12:38 AM – 5:39 AM

Office - Floor 3

Cariosus totam baiulus vox curo blandior deleo velit basium vomica.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 590,
  "ownerUserId": 245,
  "title": "Security Training",
  "description": "Cariosus totam baiulus vox curo blandior deleo velit basium vomica.",
  "startAt": "2026-08-12T00:38:45.046Z",
  "endAt": "2026-08-12T05:39:48.260Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    159,
    77,
    118
  ],
  "createdAt": "2026-04-06T08:20:18.942Z",
  "updatedAt": "2026-05-07T08:57:03.792Z"
}