example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #379

May
1
Fri

Architecture Review

1:39 AM – 2:56 AM

Verbum thorax damnatio capio vitiosus voluptatem accendo amicitia ex bardus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 379,
  "ownerUserId": 155,
  "title": "Architecture Review",
  "description": "Verbum thorax damnatio capio vitiosus voluptatem accendo amicitia ex bardus.",
  "startAt": "2026-05-01T01:39:32.202Z",
  "endAt": "2026-05-01T02:56:39.159Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-07T23:46:39.826Z",
  "updatedAt": "2026-04-17T05:02:46.733Z"
}