example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #229

Jun
11
Thu

Board Meeting

7:33 PM – 9:02 PM

Rooftop

Amor desolo attero sono curiositas vester callide cubicularis cilicium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 229,
  "ownerUserId": 98,
  "title": "Board Meeting",
  "description": "Amor desolo attero sono curiositas vester callide cubicularis cilicium.",
  "startAt": "2026-06-11T19:33:24.085Z",
  "endAt": "2026-06-11T21:02:52.760Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    120,
    48,
    52,
    201,
    169
  ],
  "createdAt": "2026-03-17T18:17:24.156Z",
  "updatedAt": "2026-03-31T06:31:33.763Z"
}