example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #13

May
29
Fri

Engineering All-Hands

5:34 PM – 8:56 PM

Conference Room A

Crebro quasi utor benigne aurum audio abduco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 13,
  "ownerUserId": 5,
  "title": "Engineering All-Hands",
  "description": "Crebro quasi utor benigne aurum audio abduco.",
  "startAt": "2026-05-29T17:34:32.451Z",
  "endAt": "2026-05-29T20:56:52.689Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    160,
    54
  ],
  "createdAt": "2026-03-25T09:03:01.059Z",
  "updatedAt": "2026-04-07T00:00:15.153Z"
}