example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #517

Mar
22
Sun

Team Standup

2:14 PM – 8:58 PM

Main Boardroom

Cubitum adfero defendo agnitio in virga succurro aegre abscido claustrum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 517,
  "ownerUserId": 216,
  "title": "Team Standup",
  "description": "Cubitum adfero defendo agnitio in virga succurro aegre abscido claustrum.",
  "startAt": "2026-03-22T14:14:11.378Z",
  "endAt": "2026-03-22T20:58:07.864Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    212
  ],
  "createdAt": "2026-03-04T17:39:28.966Z",
  "updatedAt": "2026-03-05T06:58:46.449Z"
}