example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #53

Aug
12
Wed

Product Review

1:18 PM – 6:50 PM

Conference Room A

Carcer volva eveniet appello ascisco crudelis sperno.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 53,
  "ownerUserId": 26,
  "title": "Product Review",
  "description": "Carcer volva eveniet appello ascisco crudelis sperno.",
  "startAt": "2026-08-12T13:18:49.061Z",
  "endAt": "2026-08-12T18:50:06.342Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    128,
    87,
    157
  ],
  "createdAt": "2026-03-09T01:26:56.176Z",
  "updatedAt": "2026-04-06T23:23:45.926Z"
}