example-data.com

calendar-events / #159

Mar
22
Sun

Team Lunch

12:37 AM – 6:27 AM

Conference Room A

Adstringo ara averto urbs aspernatur spoliatio ullam cursim tamdiu enim.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/159"
)
calendar_event = res.json()
{
  "id": 159,
  "ownerUserId": 68,
  "title": "Team Lunch",
  "description": "Adstringo ara averto urbs aspernatur spoliatio ullam cursim tamdiu enim.",
  "startAt": "2026-03-22T00:37:47.529Z",
  "endAt": "2026-03-22T06:27:32.054Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [],
  "createdAt": "2026-03-26T13:42:32.494Z",
  "updatedAt": "2026-04-08T17:52:10.560Z"
}
Draftbit