example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #190

Apr
19
Sun

Off-site Planning

9:42 AM – 9:42 AM

Conference Room B

Capto adicio eveniet.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 190,
  "ownerUserId": 83,
  "title": "Off-site Planning",
  "description": "Capto adicio eveniet.",
  "startAt": "2026-04-19T09:42:06.598Z",
  "endAt": "2026-04-20T09:42:06.598Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [],
  "createdAt": "2026-03-16T14:25:45.820Z",
  "updatedAt": "2026-05-17T14:24:37.486Z"
}