example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #117

May
23
Sat

Product Review

10:30 AM – 10:30 AM

Cafeteria

Delibero suffragium audax video admoveo artificiose sumptus deorsum commodi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 117,
  "ownerUserId": 49,
  "title": "Product Review",
  "description": "Delibero suffragium audax video admoveo artificiose sumptus deorsum commodi.",
  "startAt": "2026-05-23T10:30:28.950Z",
  "endAt": "2026-05-24T10:30:28.950Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    212,
    119,
    134
  ],
  "createdAt": "2026-04-23T18:52:22.888Z",
  "updatedAt": "2026-05-07T16:19:54.085Z"
}