Reel Estate Boss®

Getting started

Authentication

Every request is authenticated with a Bearer API key. Keys are scoped to your account and can carry a per-key spend cap.

Pass your key as a Bearer token on every request. Keys start with reb_live_.

curl https://www.reelestateboss.com/v1/generate \
  -H "Authorization: Bearer reb_live_YOUR_KEY"

Managing keys#

Create, view spend, and revoke keys in your account under Settings → API keys. The full secret is shown once at creation — store it in your server environment, never in client code.

Spend caps#

Each key can have a monthly USD cap. When a key reaches its cap, further calls return 402 until you raise it or the cycle resets. Caps are the primary guardrail during the beta.

Treat keys like passwords. If a key is exposed, revoke it immediately from Settings → API keys — a revoked key stops working at once.
API Docs · Authentication