Hoster API v1
Hoster API Reference
REST API for hosters to self-rent their own devices on the Proxied network: list/inspect devices, enable self-rent, manage IP auto-rotation, stop self-rent, and read their balance. Every response is a flat envelope ({ success, data } or { success, error: { code, message } }); amounts are integer cents. Authenticate with the X-API-KEY header.
Base URL
https://api.proxied.comSections
Response Envelope
All API responses use a consistent envelope structure:
Success
{
"success": true,
"data": { ... }
}Error
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "..."
}
}