example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #537

Aug
18
Tue

Team Standup

4:42 AM – 10:40 AM

Google Meet

Attollo delicate consuasor thesis alter.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 537,
  "ownerUserId": 224,
  "title": "Team Standup",
  "description": "Attollo delicate consuasor thesis alter.",
  "startAt": "2026-08-18T04:42:37.451Z",
  "endAt": "2026-08-18T10:40:20.390Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    35,
    203,
    95,
    227,
    228
  ],
  "createdAt": "2026-04-21T03:46:28.495Z",
  "updatedAt": "2026-04-21T18:20:53.489Z"
}