example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #501

Jun
9
Tue

Customer Interview

8:27 AM – 11:20 AM

Statua earum molestiae infit uxor argumentum ducimus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 501,
  "ownerUserId": 207,
  "title": "Customer Interview",
  "description": "Statua earum molestiae infit uxor argumentum ducimus.",
  "startAt": "2026-06-09T08:27:02.947Z",
  "endAt": "2026-06-09T11:20:45.838Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    240,
    34
  ],
  "createdAt": "2026-05-19T04:24:32.456Z",
  "updatedAt": "2026-05-21T09:42:43.611Z"
}