example-data.com

calendar-events / #162

May
1
Fri

Team Standup

5:49 AM – 11:07 AM

Velociter aspernatur somnus aestivus accusantium tergiversatio corona una callide quia.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/162"
)
calendar_event = res.json()
{
  "id": 162,
  "ownerUserId": 69,
  "title": "Team Standup",
  "description": "Velociter aspernatur somnus aestivus accusantium tergiversatio corona una callide quia.",
  "startAt": "2026-05-01T05:49:18.879Z",
  "endAt": "2026-05-01T11:07:23.627Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    87,
    240,
    139,
    21
  ],
  "createdAt": "2026-02-26T08:53:50.139Z",
  "updatedAt": "2026-04-27T07:32:29.133Z"
}
Draftbit