example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #410

May
10
Sun

Onboarding Session

7:35 AM – 11:26 AM

Zoom

Cilicium bestia textus utrimque voluptas clarus victoria vesco molestiae triumphus.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/calendar-events/410" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/410"
);
const calendarEvent = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/410"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/410"
)
calendar_event = res.json()

Response

{
  "id": 410,
  "ownerUserId": 168,
  "title": "Onboarding Session",
  "description": "Cilicium bestia textus utrimque voluptas clarus victoria vesco molestiae triumphus.",
  "startAt": "2026-05-10T07:35:48.920Z",
  "endAt": "2026-05-10T11:26:01.190Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    135,
    65
  ],
  "createdAt": "2026-02-25T18:50:27.971Z",
  "updatedAt": "2026-05-07T11:26:59.526Z"
}