example-data.com

calendar-events / #34

Mar
10
Tue

Team Lunch

6:48 AM – 6:48 AM

Calamitas cursim ulterius avarus demoror vesco vox cras umbra aeternus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/calendar-events/34" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/34"
);
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/34"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/34"
)
calendar_event = res.json()
{
  "id": 34,
  "ownerUserId": 18,
  "title": "Team Lunch",
  "description": "Calamitas cursim ulterius avarus demoror vesco vox cras umbra aeternus.",
  "startAt": "2026-03-10T06:48:59.251Z",
  "endAt": "2026-03-11T06:48:59.251Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    160,
    25,
    5,
    120
  ],
  "createdAt": "2026-04-12T04:56:10.188Z",
  "updatedAt": "2026-04-18T17:33:41.867Z"
}
Draftbit