example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #567

Mar
8
Sun

Demo Day

11:12 AM – 2:09 PM

Google Meet

Viduo ultio clibanus abundans quaerat cursim.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 567,
  "ownerUserId": 237,
  "title": "Demo Day",
  "description": "Viduo ultio clibanus abundans quaerat cursim.",
  "startAt": "2026-03-08T11:12:28.737Z",
  "endAt": "2026-03-08T14:09:21.653Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    198,
    116,
    188,
    184,
    45
  ],
  "createdAt": "2026-02-25T22:02:13.160Z",
  "updatedAt": "2026-04-27T17:22:55.571Z"
}