example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #361

Aug
2
Sun

Engineering All-Hands

12:29 AM – 6:27 AM

Zoom

Decimus solvo torrens tonsor aegrotatio tubineus maiores tego impedit basium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 361,
  "ownerUserId": 148,
  "title": "Engineering All-Hands",
  "description": "Decimus solvo torrens tonsor aegrotatio tubineus maiores tego impedit basium.",
  "startAt": "2026-08-02T00:29:56.758Z",
  "endAt": "2026-08-02T06:27:52.476Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    244,
    50,
    108,
    135,
    213
  ],
  "createdAt": "2026-02-25T02:34:49.920Z",
  "updatedAt": "2026-05-03T23:32:02.494Z"
}