example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #375

Jul
5
Sun

Demo Day

2:52 PM – 2:52 PM

Curiositas asporto tredecim apostolus quam comes stipes placeat nam.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 375,
  "ownerUserId": 154,
  "title": "Demo Day",
  "description": "Curiositas asporto tredecim apostolus quam comes stipes placeat nam.",
  "startAt": "2026-07-05T14:52:49.651Z",
  "endAt": "2026-07-06T14:52:49.651Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    203
  ],
  "createdAt": "2026-05-15T11:21:29.019Z",
  "updatedAt": "2026-05-18T14:36:18.020Z"
}