example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #404

May
8
Fri

Security Training

5:57 AM – 8:56 AM

Microsoft Teams

Paulatim vilitas curriculum cena vilis comis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 404,
  "ownerUserId": 166,
  "title": "Security Training",
  "description": "Paulatim vilitas curriculum cena vilis comis.",
  "startAt": "2026-05-08T05:57:58.220Z",
  "endAt": "2026-05-08T08:56:24.191Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-04-17T12:10:32.026Z",
  "updatedAt": "2026-05-04T09:11:41.764Z"
}