example-data.com

calendar-events / #112

May
19
Tue

Team Standup

9:29 PM – 11:56 PM

Rooftop

Pecus capto civis suasoria ducimus titulus cupiditas ait considero.

Component variants

curl -sS \
  "https://example-data.com/api/v1/calendar-events/112" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/112"
);
const calendarEvent = await res.json();
import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/112"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/112"
)
calendar_event = res.json()
{
  "id": 112,
  "ownerUserId": 47,
  "title": "Team Standup",
  "description": "Pecus capto civis suasoria ducimus titulus cupiditas ait considero.",
  "startAt": "2026-05-19T21:29:23.015Z",
  "endAt": "2026-05-19T23:56:24.336Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    107,
    41,
    222
  ],
  "createdAt": "2026-05-12T15:56:04.198Z",
  "updatedAt": "2026-05-19T19:21:24.808Z"
}
Draftbit