example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #526

Jul
12
Sun

Customer Interview

1:40 AM – 3:32 AM

Conference Room A

Quo debeo aetas comedo aestas admoneo contigo curis custodia.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 526,
  "ownerUserId": 219,
  "title": "Customer Interview",
  "description": "Quo debeo aetas comedo aestas admoneo contigo curis custodia.",
  "startAt": "2026-07-12T01:40:13.966Z",
  "endAt": "2026-07-12T03:32:26.448Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    209
  ],
  "createdAt": "2026-05-19T03:52:49.185Z",
  "updatedAt": "2026-05-19T04:27:08.712Z"
}