example-data.com

calendar-events / #140

Aug
4
Tue

Team Lunch

3:33 AM – 6:41 AM

Office - Floor 3

Amitto agnosco pel ambitus comes strenuus arbustum conspergo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/140"
)
calendar_event = res.json()
{
  "id": 140,
  "ownerUserId": 59,
  "title": "Team Lunch",
  "description": "Amitto agnosco pel ambitus comes strenuus arbustum conspergo.",
  "startAt": "2026-08-04T03:33:24.255Z",
  "endAt": "2026-08-04T06:41:50.593Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    200
  ],
  "createdAt": "2026-04-02T10:35:14.361Z",
  "updatedAt": "2026-04-12T22:47:17.928Z"
}
Draftbit