example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #298

Jun
26
Fri

Sales Call

10:47 AM – 10:47 AM

Office - Floor 3

Confero velut alias defetiscor abduco vinculum ara suus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 298,
  "ownerUserId": 126,
  "title": "Sales Call",
  "description": "Confero velut alias defetiscor abduco vinculum ara suus.",
  "startAt": "2026-06-26T10:47:45.894Z",
  "endAt": "2026-06-27T10:47:45.894Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    218,
    132,
    207
  ],
  "createdAt": "2026-05-21T19:20:24.132Z",
  "updatedAt": "2026-05-21T20:15:22.012Z"
}