example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #38

Jun
4
Thu

Demo Day

2:32 PM – 7:52 PM

Conference Room B

Stillicidium delicate carus tutis adduco turba corrupti.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 38,
  "ownerUserId": 21,
  "title": "Demo Day",
  "description": "Stillicidium delicate carus tutis adduco turba corrupti.",
  "startAt": "2026-06-04T14:32:34.559Z",
  "endAt": "2026-06-04T19:52:55.296Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    72,
    181,
    116,
    79,
    223
  ],
  "createdAt": "2026-02-24T14:14:23.406Z",
  "updatedAt": "2026-03-14T21:03:11.860Z"
}