example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #464

Jul
27
Mon

Sales Call

8:33 AM – 10:14 AM

Conference Room A

Degusto antea asporto consequuntur.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 464,
  "ownerUserId": 189,
  "title": "Sales Call",
  "description": "Degusto antea asporto consequuntur.",
  "startAt": "2026-07-27T08:33:39.658Z",
  "endAt": "2026-07-27T10:14:23.024Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    201,
    154,
    65,
    166,
    73
  ],
  "createdAt": "2026-04-21T12:37:04.955Z",
  "updatedAt": "2026-05-14T21:01:10.728Z"
}