example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #480

Apr
13
Mon

Onboarding Session

1:54 PM – 1:54 PM

Google Meet

Crapula infit rerum.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/480"
);
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/480"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

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

Response

{
  "id": 480,
  "ownerUserId": 197,
  "title": "Onboarding Session",
  "description": "Crapula infit rerum.",
  "startAt": "2026-04-13T13:54:10.974Z",
  "endAt": "2026-04-14T13:54:10.974Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    239,
    51,
    200,
    23
  ],
  "createdAt": "2026-03-28T02:55:34.662Z",
  "updatedAt": "2026-04-09T11:48:01.732Z"
}