example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #147

Jul
19
Sun

Team Standup

12:41 PM – 8:39 PM

Microsoft Teams

Centum solvo quam maxime tactus vilicus derelinquo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 147,
  "ownerUserId": 62,
  "title": "Team Standup",
  "description": "Centum solvo quam maxime tactus vilicus derelinquo.",
  "startAt": "2026-07-19T12:41:35.111Z",
  "endAt": "2026-07-19T20:39:06.648Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    63,
    89
  ],
  "createdAt": "2026-04-14T11:28:01.618Z",
  "updatedAt": "2026-04-26T22:11:05.351Z"
}