example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #157

May
9
Sat

Engineering All-Hands

11:24 PM – 1:00 AM

Succedo suffragium usus thesaurus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 157,
  "ownerUserId": 67,
  "title": "Engineering All-Hands",
  "description": "Succedo suffragium usus thesaurus.",
  "startAt": "2026-05-09T23:24:06.971Z",
  "endAt": "2026-05-10T01:00:08.533Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-13T16:52:37.059Z",
  "updatedAt": "2026-03-15T18:37:04.377Z"
}