example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #260

Aug
14
Fri

Engineering All-Hands

2:28 PM – 2:28 PM

Microsoft Teams

Temporibus coepi totidem vigor cupiditas ipsam.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 260,
  "ownerUserId": 111,
  "title": "Engineering All-Hands",
  "description": "Temporibus coepi totidem vigor cupiditas ipsam.",
  "startAt": "2026-08-14T14:28:34.652Z",
  "endAt": "2026-08-15T14:28:34.652Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    211
  ],
  "createdAt": "2026-03-06T06:04:23.043Z",
  "updatedAt": "2026-03-27T17:43:11.921Z"
}