example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #317

May
3
Sun

Engineering All-Hands

4:36 PM – 10:56 PM

Cursim tergeo vorago ulterius voluptatibus sapiente undique repellat deripio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 317,
  "ownerUserId": 133,
  "title": "Engineering All-Hands",
  "description": "Cursim tergeo vorago ulterius voluptatibus sapiente undique repellat deripio.",
  "startAt": "2026-05-03T16:36:31.912Z",
  "endAt": "2026-05-03T22:56:42.378Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    53,
    86,
    214,
    153
  ],
  "createdAt": "2026-04-08T22:17:45.473Z",
  "updatedAt": "2026-04-17T18:53:42.377Z"
}