example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #163

Jun
11
Thu

Strategy Workshop

11:43 PM – 3:15 AM

Cafeteria

Catena cibo vigor taceo amicitia.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 163,
  "ownerUserId": 70,
  "title": "Strategy Workshop",
  "description": "Catena cibo vigor taceo amicitia.",
  "startAt": "2026-06-11T23:43:59.365Z",
  "endAt": "2026-06-12T03:15:58.446Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    93,
    136
  ],
  "createdAt": "2026-04-06T08:47:20.088Z",
  "updatedAt": "2026-04-13T09:15:08.144Z"
}