example-data.com

calendar-events / #60

May
20
Wed

Engineering All-Hands

4:56 PM – 8:01 PM

Rooftop

Civitas substantia valeo tertius celo ustulo uter odit sto stultus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/60"
)
calendar_event = res.json()
{
  "id": 60,
  "ownerUserId": 29,
  "title": "Engineering All-Hands",
  "description": "Civitas substantia valeo tertius celo ustulo uter odit sto stultus.",
  "startAt": "2026-05-20T16:56:27.670Z",
  "endAt": "2026-05-20T20:01:04.734Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [],
  "createdAt": "2026-04-15T11:34:22.481Z",
  "updatedAt": "2026-05-18T19:54:14.831Z"
}
Draftbit