example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #231

Mar
3
Tue

Onboarding Session

4:16 PM – 12:10 AM

Rooftop

Sordeo volup illum custodia atrocitas tero aufero audio abscido.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 231,
  "ownerUserId": 98,
  "title": "Onboarding Session",
  "description": "Sordeo volup illum custodia atrocitas tero aufero audio abscido.",
  "startAt": "2026-03-03T16:16:40.046Z",
  "endAt": "2026-03-04T00:10:49.610Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    60,
    99,
    90,
    219
  ],
  "createdAt": "2026-02-27T15:21:25.681Z",
  "updatedAt": "2026-05-19T15:39:25.922Z"
}