example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #564

Apr
7
Tue

Customer Interview

11:55 AM – 3:47 PM

Zoom

Creo auditor crapula curiositas ad texo facilis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 564,
  "ownerUserId": 236,
  "title": "Customer Interview",
  "description": "Creo auditor crapula curiositas ad texo facilis.",
  "startAt": "2026-04-07T11:55:59.042Z",
  "endAt": "2026-04-07T15:47:01.896Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    191,
    196
  ],
  "createdAt": "2026-05-10T08:29:15.375Z",
  "updatedAt": "2026-05-21T11:17:27.859Z"
}