example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #418

Apr
23
Thu

Retrospective

12:32 PM – 3:18 PM

Google Meet

Correptius quasi aspernatur approbo nam apud barba degero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 418,
  "ownerUserId": 172,
  "title": "Retrospective",
  "description": "Correptius quasi aspernatur approbo nam apud barba degero.",
  "startAt": "2026-04-23T12:32:16.761Z",
  "endAt": "2026-04-23T15:18:40.282Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    15,
    79,
    141,
    232
  ],
  "createdAt": "2026-05-08T19:00:08.832Z",
  "updatedAt": "2026-05-17T23:09:29.040Z"
}