example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #407

May
2
Sat

Budget Review

2:28 AM – 3:28 AM

Rooftop

Vehemens maxime deficio dapifer pariatur adflicto substantia crepusculum ascisco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 407,
  "ownerUserId": 167,
  "title": "Budget Review",
  "description": "Vehemens maxime deficio dapifer pariatur adflicto substantia crepusculum ascisco.",
  "startAt": "2026-05-02T02:28:12.711Z",
  "endAt": "2026-05-02T03:28:59.910Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    226,
    7,
    104
  ],
  "createdAt": "2026-04-27T08:25:28.766Z",
  "updatedAt": "2026-05-01T07:48:59.352Z"
}