example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #210

May
27
Wed

Design Critique

4:27 AM – 8:04 AM

Google Meet

Fugiat culpa ancilla demitto adflicto decretum voluptate confido stillicidium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 210,
  "ownerUserId": 91,
  "title": "Design Critique",
  "description": "Fugiat culpa ancilla demitto adflicto decretum voluptate confido stillicidium.",
  "startAt": "2026-05-27T04:27:45.259Z",
  "endAt": "2026-05-27T08:04:12.175Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    180,
    134,
    73
  ],
  "createdAt": "2026-04-24T23:44:45.408Z",
  "updatedAt": "2026-04-25T02:45:10.159Z"
}