example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #100

Aug
2
Sun

Engineering All-Hands

6:02 AM – 6:02 AM

Aiunt valetudo vicinus unde vallum sumo certus atqui.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 100,
  "ownerUserId": 41,
  "title": "Engineering All-Hands",
  "description": "Aiunt valetudo vicinus unde vallum sumo certus atqui.",
  "startAt": "2026-08-02T06:02:10.797Z",
  "endAt": "2026-08-03T06:02:10.797Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    238
  ],
  "createdAt": "2026-03-13T07:38:27.685Z",
  "updatedAt": "2026-05-04T16:44:21.175Z"
}