example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #69

May
13
Wed

Sales Call

5:38 PM – 1:33 AM

Cafeteria

Enim teres laudantium ex.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 69,
  "ownerUserId": 31,
  "title": "Sales Call",
  "description": "Enim teres laudantium ex.",
  "startAt": "2026-05-13T17:38:31.609Z",
  "endAt": "2026-05-14T01:33:14.702Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    191,
    114
  ],
  "createdAt": "2026-04-13T12:50:33.958Z",
  "updatedAt": "2026-04-16T19:13:44.371Z"
}