example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #270

May
13
Wed

Retrospective

12:04 AM – 12:04 AM

Conference Room A

Tego arma denuo vel advenio vobis aut labore torrens qui.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 270,
  "ownerUserId": 114,
  "title": "Retrospective",
  "description": "Tego arma denuo vel advenio vobis aut labore torrens qui.",
  "startAt": "2026-05-13T00:04:06.601Z",
  "endAt": "2026-05-14T00:04:06.601Z",
  "isAllDay": true,
  "location": "Conference Room A",
  "attendeeUserIds": [
    27,
    168
  ],
  "createdAt": "2026-04-19T23:17:23.979Z",
  "updatedAt": "2026-04-21T01:38:45.301Z"
}