example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #301

Jul
25
Sat

1:1 with Manager

2:13 AM – 6:11 AM

Zoom

Ciminatio tredecim auxilium succedo laudantium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 301,
  "ownerUserId": 127,
  "title": "1:1 with Manager",
  "description": "Ciminatio tredecim auxilium succedo laudantium.",
  "startAt": "2026-07-25T02:13:20.459Z",
  "endAt": "2026-07-25T06:11:51.911Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    129,
    133,
    99
  ],
  "createdAt": "2026-04-17T21:37:52.784Z",
  "updatedAt": "2026-05-07T16:02:14.107Z"
}