example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #520

Mar
2
Mon

Demo Day

8:23 PM – 12:43 AM

Microsoft Teams

Catena theca quod crepusculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 520,
  "ownerUserId": 217,
  "title": "Demo Day",
  "description": "Catena theca quod crepusculum.",
  "startAt": "2026-03-02T20:23:07.670Z",
  "endAt": "2026-03-03T00:43:54.108Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    151,
    127,
    21
  ],
  "createdAt": "2026-04-25T11:31:35.949Z",
  "updatedAt": "2026-05-05T18:55:26.947Z"
}