example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #16

Jun
12
Fri

1:1 with Manager

1:54 AM – 1:54 AM

Conference Room B

Virga vapulus dolorem cupiditate esse illum ventito fugit vehemens.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 16,
  "ownerUserId": 7,
  "title": "1:1 with Manager",
  "description": "Virga vapulus dolorem cupiditate esse illum ventito fugit vehemens.",
  "startAt": "2026-06-12T01:54:28.393Z",
  "endAt": "2026-06-13T01:54:28.393Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    209
  ],
  "createdAt": "2026-03-19T03:09:13.226Z",
  "updatedAt": "2026-04-14T12:21:46.545Z"
}