example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #189

May
6
Wed

Design Critique

5:17 AM – 5:17 AM

Microsoft Teams

Conturbo beneficium capto amplus clam trado.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 189,
  "ownerUserId": 82,
  "title": "Design Critique",
  "description": "Conturbo beneficium capto amplus clam trado.",
  "startAt": "2026-05-06T05:17:34.014Z",
  "endAt": "2026-05-07T05:17:34.014Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    41
  ],
  "createdAt": "2026-05-18T18:48:59.068Z",
  "updatedAt": "2026-05-21T16:42:52.628Z"
}