example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #188

Apr
3
Fri

Demo Day

6:44 AM – 11:32 AM

Microsoft Teams

Volup audio undique claudeo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 188,
  "ownerUserId": 82,
  "title": "Demo Day",
  "description": "Volup audio undique claudeo.",
  "startAt": "2026-04-03T06:44:32.580Z",
  "endAt": "2026-04-03T11:32:13.538Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    161,
    18
  ],
  "createdAt": "2026-03-23T21:28:34.212Z",
  "updatedAt": "2026-05-19T14:10:55.397Z"
}