example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #280

May
7
Thu

Demo Day

11:39 AM – 6:14 PM

Cafeteria

Surgo sonitus utroque tui centum est tenetur culpo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 280,
  "ownerUserId": 119,
  "title": "Demo Day",
  "description": "Surgo sonitus utroque tui centum est tenetur culpo.",
  "startAt": "2026-05-07T11:39:32.781Z",
  "endAt": "2026-05-07T18:14:46.929Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    217,
    18,
    83,
    195
  ],
  "createdAt": "2026-04-25T22:18:35.347Z",
  "updatedAt": "2026-05-13T07:45:42.404Z"
}