example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #422

Mar
20
Fri

Off-site Planning

12:08 AM – 7:08 AM

Google Meet

Aequus eos vulnero cumque.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 422,
  "ownerUserId": 173,
  "title": "Off-site Planning",
  "description": "Aequus eos vulnero cumque.",
  "startAt": "2026-03-20T00:08:05.027Z",
  "endAt": "2026-03-20T07:08:38.691Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    167,
    168,
    63
  ],
  "createdAt": "2026-04-10T12:19:50.795Z",
  "updatedAt": "2026-05-20T09:45:21.700Z"
}