example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #239

Apr
10
Fri

Product Review

9:44 PM – 12:45 AM

Zoom

Civitas vae cupiditas cubo ademptio cohors usitas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 239,
  "ownerUserId": 102,
  "title": "Product Review",
  "description": "Civitas vae cupiditas cubo ademptio cohors usitas.",
  "startAt": "2026-04-10T21:44:46.695Z",
  "endAt": "2026-04-11T00:45:12.935Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    201,
    75,
    115,
    8,
    151
  ],
  "createdAt": "2026-05-12T19:42:06.460Z",
  "updatedAt": "2026-05-14T23:20:28.254Z"
}