example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #476

Jun
8
Mon

Demo Day

2:18 PM – 2:18 PM

Cafeteria

Repudiandae demergo vulgivagus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 476,
  "ownerUserId": 194,
  "title": "Demo Day",
  "description": "Repudiandae demergo vulgivagus.",
  "startAt": "2026-06-08T14:18:27.601Z",
  "endAt": "2026-06-09T14:18:27.601Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    108,
    212,
    132,
    62,
    229
  ],
  "createdAt": "2026-03-31T00:46:07.398Z",
  "updatedAt": "2026-05-18T22:34:30.723Z"
}