example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #50

Apr
1
Wed

Team Standup

10:36 PM – 1:03 AM

Conference Room B

Audacia demens volaticus clamo summisse laborum bestia ad angulus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 50,
  "ownerUserId": 25,
  "title": "Team Standup",
  "description": "Audacia demens volaticus clamo summisse laborum bestia ad angulus.",
  "startAt": "2026-04-01T22:36:06.737Z",
  "endAt": "2026-04-02T01:03:34.254Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    106
  ],
  "createdAt": "2026-05-03T04:11:20.073Z",
  "updatedAt": "2026-05-08T20:43:42.651Z"
}