example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #90

Mar
13
Fri

Sprint Planning

12:26 AM – 2:32 AM

Rooftop

Claro tametsi alias cogo comptus sustineo sollers tot approbo tripudio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 90,
  "ownerUserId": 38,
  "title": "Sprint Planning",
  "description": "Claro tametsi alias cogo comptus sustineo sollers tot approbo tripudio.",
  "startAt": "2026-03-13T00:26:06.697Z",
  "endAt": "2026-03-13T02:32:36.848Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    214
  ],
  "createdAt": "2026-05-13T23:38:00.394Z",
  "updatedAt": "2026-05-16T15:13:06.995Z"
}