Skip to content
Broomed logo
Broomed
Broomed Mascot
Gateway Status: All Systems Operational

Broomed API Gateway

Edge-native licensing, cryptographic device tokens, and local AI acceleration APIs.

Gateway Version

v1.0.0 (Stable)

Edge Network

Cloudflare Edge

Security / Cryptography

RSA-2048 / RS256

Average Edge Latency

< 25 ms

API Endpoints Overview

Primary endpoints hosted on https://api.broomed.app

POST /v1/license/activate
Cryptographic Device Activation

Consumes a single-use 15-character activation code to bind a physical machine, issuing a cryptographically signed RS256 offline entitlement token good for 7 days.

POST /v1/license/refresh
Weekly Token Extension

Periodically renews an active device's entitlement token without requiring user interaction as long as the subscription is active.

POST /v1/license/device/deactivate
Revoke Machine Slot

Explicitly deactivates a device registration, freeing up the machine slot for activation on a new computer.

POST /v1/ai/text
Local AI Text Routing

Routes queries to local embedding and lightweight LLM providers with automatic rate limiting and zero retention.

POST /v1/ai/vision
Visual OCR & Embeddings

Image vectorization and visual OCR extraction for organizing diagrams, screenshots, receipts, and scans.

Quick cURL Example

Activate Device
curl -X POST https://api.broomed.app/v1/license/activate \
  -H "Content-Type: application/json" \
  -d '{
    "code": "BRMD1-A9X2K-7P4Q9",
    "deviceId": "machine-uuid-fingerprint-sha256",
    "deviceName": "MacBook Pro (M3 Max)",
    "platform": "darwin-arm64"
  }'