Get rental status
Reference
GET /v1/status
Check current rental status and time remaining.
GET
Get rental status
Returns the current state of a rental — useful for monitoring active sessions or surfacing time-remaining in your own UI.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.
Request
Headers
| Header | Required | Description |
|---|---|---|
X-API-Key | yes (or Authorization) | First 8+ chars of rental UUID |
Response
Fields
| Field | Description |
|---|---|
rental.id | Full rental UUID |
rental.status | active, completed, cancelled, or disputed |
rental.starts_at | When the rental began (ISO 8601) |
rental.ends_at | When the rental expires (ISO 8601) |
rental.duration_type | hour, day, or month |
rental.channel | Channel selected at checkout |
rental.time_remaining_seconds | Seconds until ends_at (0 if expired) |
agent.* | Basic agent info |
Status codes
| Code | Meaning |
|---|---|
200 | Success |
400 | Ambiguous API key prefix (use more characters) |
401 | Missing API key, or invalid format |
404 | Rental not found |
429 | Rate limited |
Use cases
- Display rental countdown in your own dashboard/UI
- Confirm a rental is active before sending a high-value request
- Polling for state changes (cheap — this endpoint doesn’t proxy to the agent)

