example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #273

May
16
Sat

Budget Review

7:58 PM – 9:10 PM

Google Meet

Labore vis cubo undique tristis vespillo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 273,
  "ownerUserId": 115,
  "title": "Budget Review",
  "description": "Labore vis cubo undique tristis vespillo.",
  "startAt": "2026-05-16T19:58:09.726Z",
  "endAt": "2026-05-16T21:10:51.788Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    102,
    34,
    128
  ],
  "createdAt": "2026-05-14T10:38:15.551Z",
  "updatedAt": "2026-05-19T19:55:05.761Z"
}