example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #545

Aug
5
Wed

Engineering All-Hands

12:37 PM – 8:10 PM

Zoom

Succurro eveniet vigor totam corporis apud vorax absum quo copiose.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 545,
  "ownerUserId": 228,
  "title": "Engineering All-Hands",
  "description": "Succurro eveniet vigor totam corporis apud vorax absum quo copiose.",
  "startAt": "2026-08-05T12:37:20.786Z",
  "endAt": "2026-08-05T20:10:18.413Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    80,
    140,
    48
  ],
  "createdAt": "2026-03-25T12:42:37.720Z",
  "updatedAt": "2026-04-20T07:03:27.336Z"
}