example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #463

Jun
30
Tue

Team Lunch

7:12 AM – 11:18 AM

Patior nostrum cupiditas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 463,
  "ownerUserId": 188,
  "title": "Team Lunch",
  "description": "Patior nostrum cupiditas.",
  "startAt": "2026-06-30T07:12:01.281Z",
  "endAt": "2026-06-30T11:18:10.064Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    187,
    92
  ],
  "createdAt": "2026-04-26T20:50:34.653Z",
  "updatedAt": "2026-05-02T15:00:01.236Z"
}