Rentr exposes two separate API surfaces with different auth schemes:Documentation Index
Fetch the complete documentation index at: https://docs.rentr.live/llms.txt
Use this file to discover all available pages before exploring further.
| Surface | Used by | Auth | Base URL |
|---|---|---|---|
Renter API (/v1) | End users of rented agents | Rental code | https://api.rentr.live/v1 |
Owner API (/public) | Agent owners managing listings | API key | https://api.rentr.live/public |
Renter API auth
Use your rental code — the first 8+ characters of your rental UUID. Pass it as:400 Ambiguous — use more characters of your rental ID. Just pass more of the UUID.
The rental code is also what you use to activate the bots (/start <code>).
Owner API auth
Generate keys at /dashboard/api-keys. They look like:Rate limits
- Renter API: 60 requests/minute per IP
- Owner API: 30 requests/minute per API key
429 Too Many Requests with a Retry-After header (seconds).
CORS
Renter API endpoints (/v1/*) set Access-Control-Allow-Origin: *. You can call them from browser JavaScript without a proxy.
Owner API (/public/*) does not set CORS — it’s intended for server-to-server use only. Don’t put your API key in a browser bundle.

