example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #279

Jun
24
Wed

Quarterly Review

3:05 PM – 3:05 PM

Office - Floor 3

Tersus averto carus advoco cunae complectus coniecto dedico.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 279,
  "ownerUserId": 118,
  "title": "Quarterly Review",
  "description": "Tersus averto carus advoco cunae complectus coniecto dedico.",
  "startAt": "2026-06-24T15:05:21.002Z",
  "endAt": "2026-06-25T15:05:21.002Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    54,
    166,
    42,
    144,
    103
  ],
  "createdAt": "2026-04-02T11:35:06.326Z",
  "updatedAt": "2026-05-07T10:24:33.764Z"
}