example-data.com

calendar-events / #109

Mar
8
Sun

Team Lunch

7:38 PM – 1:30 AM

Main Boardroom

Crur despecto turpis vos vigilo currus crapula curvo ademptio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/109"
)
calendar_event = res.json()
{
  "id": 109,
  "ownerUserId": 45,
  "title": "Team Lunch",
  "description": "Crur despecto turpis vos vigilo currus crapula curvo ademptio.",
  "startAt": "2026-03-08T19:38:05.528Z",
  "endAt": "2026-03-09T01:30:08.140Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    147,
    22,
    153
  ],
  "createdAt": "2026-03-15T04:56:40.072Z",
  "updatedAt": "2026-05-20T22:40:16.500Z"
}
Draftbit