example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #523

May
4
Mon

Quarterly Review

3:40 PM – 4:43 PM

Pel textor venio conor defungo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 523,
  "ownerUserId": 218,
  "title": "Quarterly Review",
  "description": "Pel textor venio conor defungo.",
  "startAt": "2026-05-04T15:40:00.316Z",
  "endAt": "2026-05-04T16:43:14.883Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    34,
    150,
    65,
    212
  ],
  "createdAt": "2026-05-18T20:12:06.736Z",
  "updatedAt": "2026-05-21T23:38:06.991Z"
}