example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #559

Mar
2
Mon

Demo Day

9:06 AM – 1:44 PM

Conference Room A

Tollo magnam theca ademptio tubineus vomica curia arx vomito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 559,
  "ownerUserId": 234,
  "title": "Demo Day",
  "description": "Tollo magnam theca ademptio tubineus vomica curia arx vomito.",
  "startAt": "2026-03-02T09:06:14.377Z",
  "endAt": "2026-03-02T13:44:55.201Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    88
  ],
  "createdAt": "2026-05-06T06:40:19.837Z",
  "updatedAt": "2026-05-15T04:32:11.642Z"
}