example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #386

May
23
Sat

Quarterly Review

8:27 PM – 2:29 AM

Rooftop

Adsum incidunt valde cattus carbo beneficium baiulus timidus vado.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 386,
  "ownerUserId": 158,
  "title": "Quarterly Review",
  "description": "Adsum incidunt valde cattus carbo beneficium baiulus timidus vado.",
  "startAt": "2026-05-23T20:27:52.099Z",
  "endAt": "2026-05-24T02:29:57.353Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    124
  ],
  "createdAt": "2026-03-20T23:21:26.786Z",
  "updatedAt": "2026-03-28T02:23:50.270Z"
}