example-data.com

calendar-events / #118

Jun
3
Wed

Hiring Interview

12:10 PM – 2:30 PM

Google Meet

Advenio succurro vobis desparatus audax uxor audax stipes vomer.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/118"
)
calendar_event = res.json()
{
  "id": 118,
  "ownerUserId": 50,
  "title": "Hiring Interview",
  "description": "Advenio succurro vobis desparatus audax uxor audax stipes vomer.",
  "startAt": "2026-06-03T12:10:50.426Z",
  "endAt": "2026-06-03T14:30:36.686Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    244
  ],
  "createdAt": "2026-03-03T13:15:22.448Z",
  "updatedAt": "2026-04-17T18:01:21.577Z"
}
Draftbit