example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #446

Mar
19
Thu

Sales Call

2:26 AM – 9:11 AM

Office - Floor 3

Degenero vulpes commodo vilitas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 446,
  "ownerUserId": 183,
  "title": "Sales Call",
  "description": "Degenero vulpes commodo vilitas.",
  "startAt": "2026-03-19T02:26:34.693Z",
  "endAt": "2026-03-19T09:11:22.368Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    234,
    151,
    217,
    44
  ],
  "createdAt": "2026-03-08T23:40:19.000Z",
  "updatedAt": "2026-05-06T14:13:28.224Z"
}