example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #488

Aug
11
Tue

Demo Day

8:29 PM – 10:12 PM

Traho alo caput vigilo cultura adhaero stips.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 488,
  "ownerUserId": 200,
  "title": "Demo Day",
  "description": "Traho alo caput vigilo cultura adhaero stips.",
  "startAt": "2026-08-11T20:29:15.373Z",
  "endAt": "2026-08-11T22:12:53.709Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    16,
    230,
    60
  ],
  "createdAt": "2026-03-26T09:31:47.931Z",
  "updatedAt": "2026-04-09T17:30:25.583Z"
}