example-data.com

calendar-events / #164

Mar
3
Tue

Hiring Interview

10:01 PM – 2:46 AM

Excepturi testimonium deripio tenuis terminatio patria vulgaris spero.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/164"
)
calendar_event = res.json()
{
  "id": 164,
  "ownerUserId": 70,
  "title": "Hiring Interview",
  "description": "Excepturi testimonium deripio tenuis terminatio patria vulgaris spero.",
  "startAt": "2026-03-03T22:01:42.114Z",
  "endAt": "2026-03-04T02:46:54.243Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    206,
    85,
    224,
    59
  ],
  "createdAt": "2026-03-14T23:05:07.678Z",
  "updatedAt": "2026-05-06T16:48:30.669Z"
}
Draftbit