example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #278

Jul
13
Mon

Team Standup

9:49 AM – 2:30 PM

Tamisium ars territo beatus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 278,
  "ownerUserId": 117,
  "title": "Team Standup",
  "description": "Tamisium ars territo beatus.",
  "startAt": "2026-07-13T09:49:27.783Z",
  "endAt": "2026-07-13T14:30:33.552Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    66,
    237,
    228,
    149
  ],
  "createdAt": "2026-03-30T03:29:25.824Z",
  "updatedAt": "2026-04-20T07:37:16.858Z"
}