example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #339

Jun
11
Thu

Engineering All-Hands

9:42 AM – 11:31 AM

Office - Floor 3

Culpa quae delectatio umerus catena alias.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 339,
  "ownerUserId": 140,
  "title": "Engineering All-Hands",
  "description": "Culpa quae delectatio umerus catena alias.",
  "startAt": "2026-06-11T09:42:46.263Z",
  "endAt": "2026-06-11T11:31:53.117Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    73,
    163,
    143,
    199
  ],
  "createdAt": "2026-05-19T15:40:02.586Z",
  "updatedAt": "2026-05-21T09:03:02.249Z"
}