example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #196

Jul
30
Thu

Team Standup

12:14 AM – 12:14 AM

Office - Floor 3

Maxime tenus amitto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 196,
  "ownerUserId": 85,
  "title": "Team Standup",
  "description": "Maxime tenus amitto.",
  "startAt": "2026-07-30T00:14:25.775Z",
  "endAt": "2026-07-31T00:14:25.775Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [],
  "createdAt": "2026-05-18T06:59:01.678Z",
  "updatedAt": "2026-05-20T06:14:46.168Z"
}