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 cumulative USD cap. Spend accrues over the key's lifetime and is not reset by monthly invoicing, so when a key reaches its cap, further calls return 402 until you raise it. Caps are the primary spend guardrail.

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