example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #417

Apr
17
Fri

Architecture Review

7:42 PM – 10:05 PM

Cafeteria

Incidunt verto necessitatibus vacuus accedo tamen exercitationem cenaculum cito comitatus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 417,
  "ownerUserId": 171,
  "title": "Architecture Review",
  "description": "Incidunt verto necessitatibus vacuus accedo tamen exercitationem cenaculum cito comitatus.",
  "startAt": "2026-04-17T19:42:31.403Z",
  "endAt": "2026-04-17T22:05:25.926Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    69,
    47,
    136
  ],
  "createdAt": "2026-03-26T19:00:15.338Z",
  "updatedAt": "2026-04-16T17:40:48.722Z"
}