example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #58

May
11
Mon

Sprint Planning

5:50 AM – 8:26 AM

Sordeo collum bos alveus debilito nobis audax valetudo constans.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 58,
  "ownerUserId": 27,
  "title": "Sprint Planning",
  "description": "Sordeo collum bos alveus debilito nobis audax valetudo constans.",
  "startAt": "2026-05-11T05:50:17.210Z",
  "endAt": "2026-05-11T08:26:08.770Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    76
  ],
  "createdAt": "2026-03-17T20:25:58.692Z",
  "updatedAt": "2026-05-21T10:45:46.161Z"
}