example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #394

Jun
18
Thu

Sales Call

1:43 PM – 2:48 PM

Office - Floor 3

Ratione dolores vapulus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 394,
  "ownerUserId": 162,
  "title": "Sales Call",
  "description": "Ratione dolores vapulus.",
  "startAt": "2026-06-18T13:43:07.011Z",
  "endAt": "2026-06-18T14:48:38.604Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    93,
    111
  ],
  "createdAt": "2026-04-11T19:59:08.605Z",
  "updatedAt": "2026-04-18T13:26:13.170Z"
}