example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #172

Jun
17
Wed

Team Standup

2:12 PM – 2:12 PM

Conference Room B

Tutis color solus verecundia cavus surculus defleo voveo sit.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 172,
  "ownerUserId": 74,
  "title": "Team Standup",
  "description": "Tutis color solus verecundia cavus surculus defleo voveo sit.",
  "startAt": "2026-06-17T14:12:29.375Z",
  "endAt": "2026-06-18T14:12:29.375Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    87,
    84
  ],
  "createdAt": "2026-05-05T06:28:28.646Z",
  "updatedAt": "2026-05-18T09:46:55.542Z"
}