Authentication

A hoster API key. Required for all /hoster/v1/* routes. Every request must include your API key in the X-API-KEY header.

Authenticated Request
curl -X GET "https://api.proxied.com/hoster/v1/devices" \
  -H "X-API-KEY: <api-key>"

Error Responses

Error shape
{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "readable message"
  }
}
StatusCodeDescription
401
MISSING_API_KEYMissing API key.
403
INVALID_API_KEYInvalid key or suspended account.
403
HOSTER_BANNEDInvalid key or suspended account.