example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #105

Feb
21
Sat

Demo Day

4:40 AM – 9:37 AM

Microsoft Teams

Dolorum tantum clarus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 105,
  "ownerUserId": 43,
  "title": "Demo Day",
  "description": "Dolorum tantum clarus.",
  "startAt": "2026-02-21T04:40:25.496Z",
  "endAt": "2026-02-21T09:37:39.327Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    246,
    46
  ],
  "createdAt": "2026-04-13T15:27:52.304Z",
  "updatedAt": "2026-05-09T14:36:36.919Z"
}