example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #362

Jul
24
Fri

Board Meeting

12:43 PM – 4:24 PM

Rooftop

Basium tracto arca virga.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 362,
  "ownerUserId": 148,
  "title": "Board Meeting",
  "description": "Basium tracto arca virga.",
  "startAt": "2026-07-24T12:43:49.252Z",
  "endAt": "2026-07-24T16:24:25.429Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    157,
    198
  ],
  "createdAt": "2026-02-26T12:05:44.976Z",
  "updatedAt": "2026-03-15T15:18:04.319Z"
}