example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #336

Aug
4
Tue

Board Meeting

10:57 AM – 4:12 PM

Office - Floor 3

Molestiae soleo contego.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 336,
  "ownerUserId": 139,
  "title": "Board Meeting",
  "description": "Molestiae soleo contego.",
  "startAt": "2026-08-04T10:57:52.666Z",
  "endAt": "2026-08-04T16:12:34.146Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    126,
    241,
    41,
    82
  ],
  "createdAt": "2026-03-15T22:03:44.348Z",
  "updatedAt": "2026-05-09T10:03:50.378Z"
}