example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #441

Mar
28
Sat

Product Review

6:30 AM – 12:21 PM

Rooftop

Celo traho perspiciatis reprehenderit.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 441,
  "ownerUserId": 180,
  "title": "Product Review",
  "description": "Celo traho perspiciatis reprehenderit.",
  "startAt": "2026-03-28T06:30:53.416Z",
  "endAt": "2026-03-28T12:21:48.788Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    24,
    92
  ],
  "createdAt": "2026-05-06T08:26:27.507Z",
  "updatedAt": "2026-05-11T04:11:28.413Z"
}