example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #439

Jul
29
Wed

Demo Day

4:27 AM – 12:19 PM

Main Boardroom

Tum tremo vere depraedor nihil concedo strenuus quam.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 439,
  "ownerUserId": 179,
  "title": "Demo Day",
  "description": "Tum tremo vere depraedor nihil concedo strenuus quam.",
  "startAt": "2026-07-29T04:27:37.491Z",
  "endAt": "2026-07-29T12:19:40.860Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    183
  ],
  "createdAt": "2026-03-17T15:43:45.588Z",
  "updatedAt": "2026-04-25T02:55:19.021Z"
}