example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #322

Mar
6
Fri

Hiring Interview

12:34 PM – 12:34 PM

Microsoft Teams

Sono peccatus considero sollicito defendo cena umquam aureus nostrum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 322,
  "ownerUserId": 135,
  "title": "Hiring Interview",
  "description": "Sono peccatus considero sollicito defendo cena umquam aureus nostrum.",
  "startAt": "2026-03-06T12:34:25.604Z",
  "endAt": "2026-03-07T12:34:25.604Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    128,
    186,
    96,
    221,
    54
  ],
  "createdAt": "2026-04-30T11:59:38.674Z",
  "updatedAt": "2026-05-04T14:09:47.972Z"
}