example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #86

Aug
14
Fri

Product Review

9:01 PM – 3:48 AM

Conference Room A

Taedium tabernus sublime tabernus comptus assumenda desidero angelus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 86,
  "ownerUserId": 37,
  "title": "Product Review",
  "description": "Taedium tabernus sublime tabernus comptus assumenda desidero angelus.",
  "startAt": "2026-08-14T21:01:31.613Z",
  "endAt": "2026-08-15T03:48:15.972Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [],
  "createdAt": "2026-04-06T10:39:20.567Z",
  "updatedAt": "2026-05-20T03:18:32.391Z"
}