example-data.com

calendar-events / #176

Apr
23
Thu

Product Review

10:56 AM – 12:00 PM

Cafeteria

Creo ventus vilitas sto antea quam vapulus animus pecto.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/176"
)
calendar_event = res.json()
{
  "id": 176,
  "ownerUserId": 77,
  "title": "Product Review",
  "description": "Creo ventus vilitas sto antea quam vapulus animus pecto.",
  "startAt": "2026-04-23T10:56:10.857Z",
  "endAt": "2026-04-23T12:00:31.435Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    111,
    212,
    66,
    63,
    47
  ],
  "createdAt": "2026-02-28T16:25:25.452Z",
  "updatedAt": "2026-05-08T12:16:13.670Z"
}
Draftbit