example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #119

Mar
20
Fri

Hiring Interview

5:32 AM – 8:10 AM

Conference Room A

Umbra animadverto pecus arbor appello abutor voluptatem callide.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 119,
  "ownerUserId": 51,
  "title": "Hiring Interview",
  "description": "Umbra animadverto pecus arbor appello abutor voluptatem callide.",
  "startAt": "2026-03-20T05:32:32.772Z",
  "endAt": "2026-03-20T08:10:56.717Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    137,
    237,
    129
  ],
  "createdAt": "2026-03-06T08:46:23.830Z",
  "updatedAt": "2026-03-19T05:46:42.915Z"
}