example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #359

Mar
27
Fri

Architecture Review

2:51 PM – 10:02 PM

Google Meet

Testimonium speculum viriliter pauci eos rem amiculum viriliter.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 359,
  "ownerUserId": 147,
  "title": "Architecture Review",
  "description": "Testimonium speculum viriliter pauci eos rem amiculum viriliter.",
  "startAt": "2026-03-27T14:51:22.051Z",
  "endAt": "2026-03-27T22:02:29.687Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    104,
    198,
    124
  ],
  "createdAt": "2026-03-12T12:49:03.155Z",
  "updatedAt": "2026-03-23T22:09:17.066Z"
}