example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #363

Jun
10
Wed

Engineering All-Hands

6:17 PM – 11:26 PM

Terminatio carus angelus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 363,
  "ownerUserId": 148,
  "title": "Engineering All-Hands",
  "description": "Terminatio carus angelus.",
  "startAt": "2026-06-10T18:17:52.886Z",
  "endAt": "2026-06-10T23:26:29.911Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    184,
    191,
    25,
    58,
    46
  ],
  "createdAt": "2026-03-29T22:05:25.917Z",
  "updatedAt": "2026-05-21T18:41:29.977Z"
}