example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #326

May
7
Thu

Board Meeting

2:40 PM – 4:52 PM

Microsoft Teams

Vel crustulum campana cuius earum aestus caput suus somniculosus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 326,
  "ownerUserId": 136,
  "title": "Board Meeting",
  "description": "Vel crustulum campana cuius earum aestus caput suus somniculosus.",
  "startAt": "2026-05-07T14:40:28.376Z",
  "endAt": "2026-05-07T16:52:50.018Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-05-17T21:43:19.761Z",
  "updatedAt": "2026-05-18T06:37:56.622Z"
}