example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #397

Jul
15
Wed

Strategy Workshop

5:39 AM – 1:04 PM

Office - Floor 3

Deduco turpis modi tempora corrumpo aetas campana.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 397,
  "ownerUserId": 163,
  "title": "Strategy Workshop",
  "description": "Deduco turpis modi tempora corrumpo aetas campana.",
  "startAt": "2026-07-15T05:39:07.158Z",
  "endAt": "2026-07-15T13:04:30.117Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    89,
    123,
    53,
    138
  ],
  "createdAt": "2026-04-09T21:27:06.072Z",
  "updatedAt": "2026-04-13T20:23:29.987Z"
}