example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #52

Jul
25
Sat

Off-site Planning

2:13 PM – 6:47 PM

Vesica tibi acervus caput aestas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 52,
  "ownerUserId": 25,
  "title": "Off-site Planning",
  "description": "Vesica tibi acervus caput aestas.",
  "startAt": "2026-07-25T14:13:43.612Z",
  "endAt": "2026-07-25T18:47:09.125Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    203,
    16
  ],
  "createdAt": "2026-03-20T05:58:39.649Z",
  "updatedAt": "2026-03-20T12:18:10.325Z"
}