example-data.com

calendar-events / #129

Jul
1
Wed

Hiring Interview

4:35 PM – 8:18 PM

Annus terror apostolus viriliter.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/129"
)
calendar_event = res.json()
{
  "id": 129,
  "ownerUserId": 54,
  "title": "Hiring Interview",
  "description": "Annus terror apostolus viriliter.",
  "startAt": "2026-07-01T16:35:09.738Z",
  "endAt": "2026-07-01T20:18:55.985Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    40,
    77,
    89,
    163
  ],
  "createdAt": "2026-02-22T18:09:09.345Z",
  "updatedAt": "2026-03-06T21:15:30.987Z"
}
Draftbit