example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #598

Mar
2
Mon

Product Review

1:48 AM – 4:19 AM

Rooftop

Terga cupio caput.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 598,
  "ownerUserId": 249,
  "title": "Product Review",
  "description": "Terga cupio caput.",
  "startAt": "2026-03-02T01:48:10.101Z",
  "endAt": "2026-03-02T04:19:27.684Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    204,
    219,
    170,
    37,
    187
  ],
  "createdAt": "2026-05-06T14:53:35.124Z",
  "updatedAt": "2026-05-18T07:33:46.610Z"
}