example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #224

Aug
5
Wed

Team Lunch

11:03 AM – 11:03 AM

Main Boardroom

Autem vicinus damno.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 224,
  "ownerUserId": 95,
  "title": "Team Lunch",
  "description": "Autem vicinus damno.",
  "startAt": "2026-08-05T11:03:59.701Z",
  "endAt": "2026-08-06T11:03:59.701Z",
  "isAllDay": true,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    90,
    34,
    42,
    59
  ],
  "createdAt": "2026-03-06T13:13:18.093Z",
  "updatedAt": "2026-04-11T07:17:43.583Z"
}