example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #113

Apr
10
Fri

Engineering All-Hands

7:48 AM – 7:48 AM

Office - Floor 3

Aut ut certus callide.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 113,
  "ownerUserId": 48,
  "title": "Engineering All-Hands",
  "description": "Aut ut certus callide.",
  "startAt": "2026-04-10T07:48:00.804Z",
  "endAt": "2026-04-11T07:48:00.804Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [],
  "createdAt": "2026-04-10T12:54:31.903Z",
  "updatedAt": "2026-04-22T20:19:55.922Z"
}