Reel Estate Boss®

Getting started

Quickstart

Make your first generation in three steps. Async by design — submit, then poll for the result.

1 · Create a key#

In your account, open Settings → API keys and create a key. Copy the secret then — it's shown once. Optionally set a monthly USD spend cap per key.

2 · Submit a job#

POST to /v1/generate with your key and a model + prompt. You get a task id and a poll URL back (HTTP 202).

curl https://www.reelestateboss.com/v1/generate \
  -H "Authorization: Bearer reb_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "model": "flux-schnell", "prompt": "twilight exterior of a modern listing" }'

3 · Poll for the result#

Poll the task until status is succeeded, then read the output URLs. You're billed only on success.

curl https://www.reelestateboss.com/v1/tasks/<id> \
  -H "Authorization: Bearer reb_live_…"
API Docs · Quickstart