example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #566

May
28
Thu

Team Standup

10:33 AM – 10:33 AM

Office - Floor 3

Talis arcus repudiandae coerceo peccatus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 566,
  "ownerUserId": 237,
  "title": "Team Standup",
  "description": "Talis arcus repudiandae coerceo peccatus.",
  "startAt": "2026-05-28T10:33:53.495Z",
  "endAt": "2026-05-29T10:33:53.495Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    7
  ],
  "createdAt": "2026-03-26T15:41:02.928Z",
  "updatedAt": "2026-03-28T02:26:40.961Z"
}