example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #324

Aug
4
Tue

Strategy Workshop

11:05 PM – 11:05 PM

Conference Room B

Comprehendo corporis coruscus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 324,
  "ownerUserId": 135,
  "title": "Strategy Workshop",
  "description": "Comprehendo corporis coruscus.",
  "startAt": "2026-08-04T23:05:00.798Z",
  "endAt": "2026-08-05T23:05:00.798Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    86,
    172,
    239,
    80
  ],
  "createdAt": "2026-04-24T15:10:10.275Z",
  "updatedAt": "2026-05-09T04:56:24.382Z"
}