example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #313

Jun
18
Thu

Product Review

3:20 PM – 9:37 PM

Main Boardroom

Voluptatem venio earum aliquam adversus damno quidem depromo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 313,
  "ownerUserId": 131,
  "title": "Product Review",
  "description": "Voluptatem venio earum aliquam adversus damno quidem depromo.",
  "startAt": "2026-06-18T15:20:09.996Z",
  "endAt": "2026-06-18T21:37:07.156Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    189,
    74,
    139,
    32,
    198
  ],
  "createdAt": "2026-03-02T08:38:55.272Z",
  "updatedAt": "2026-04-20T03:29:06.553Z"
}