example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #563

Mar
18
Wed

Demo Day

11:28 AM – 5:47 PM

Conventus textus vinculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 563,
  "ownerUserId": 235,
  "title": "Demo Day",
  "description": "Conventus textus vinculum.",
  "startAt": "2026-03-18T11:28:57.997Z",
  "endAt": "2026-03-18T17:47:17.451Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    204,
    247,
    229
  ],
  "createdAt": "2026-03-20T06:46:18.405Z",
  "updatedAt": "2026-04-15T18:52:59.927Z"
}