example-data.com

calendar-events / #23

Apr
9
Thu

Hiring Interview

11:12 PM – 5:12 AM

Conference Room B

Corpus audio censura.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/23"
)
calendar_event = res.json()
{
  "id": 23,
  "ownerUserId": 11,
  "title": "Hiring Interview",
  "description": "Corpus audio censura.",
  "startAt": "2026-04-09T23:12:15.227Z",
  "endAt": "2026-04-10T05:12:04.844Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [],
  "createdAt": "2026-03-15T17:57:08.618Z",
  "updatedAt": "2026-05-18T11:39:06.350Z"
}
Draftbit