example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #586

Apr
20
Mon

Onboarding Session

2:56 AM – 5:02 AM

Rooftop

Angulus minima succedo ipsa ustulo comburo basium solvo abbas vinculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 586,
  "ownerUserId": 243,
  "title": "Onboarding Session",
  "description": "Angulus minima succedo ipsa ustulo comburo basium solvo abbas vinculum.",
  "startAt": "2026-04-20T02:56:18.823Z",
  "endAt": "2026-04-20T05:02:19.396Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [],
  "createdAt": "2026-03-21T02:39:21.477Z",
  "updatedAt": "2026-05-13T11:49:37.044Z"
}