example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #250

Jul
13
Mon

Strategy Workshop

5:06 AM – 10:45 AM

Conference Room B

Summopere surculus attollo ver suadeo varius peior.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 250,
  "ownerUserId": 107,
  "title": "Strategy Workshop",
  "description": "Summopere surculus attollo ver suadeo varius peior.",
  "startAt": "2026-07-13T05:06:05.419Z",
  "endAt": "2026-07-13T10:45:52.619Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    139,
    93,
    27,
    148,
    214
  ],
  "createdAt": "2026-05-05T18:48:24.479Z",
  "updatedAt": "2026-05-06T07:50:36.609Z"
}