example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #349

Jul
3
Fri

Architecture Review

3:30 AM – 7:02 AM

Arbustum cavus uterque abundans doloribus utroque caecus tabella tenetur.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 349,
  "ownerUserId": 143,
  "title": "Architecture Review",
  "description": "Arbustum cavus uterque abundans doloribus utroque caecus tabella tenetur.",
  "startAt": "2026-07-03T03:30:04.330Z",
  "endAt": "2026-07-03T07:02:17.706Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-10T11:16:38.162Z",
  "updatedAt": "2026-03-19T11:08:35.477Z"
}