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"
}
}| Status | Code | Description |
|---|---|---|
401 | MISSING_API_KEY | Missing API key. |
403 | INVALID_API_KEY | Invalid key or suspended account. |
403 | HOSTER_BANNED | Invalid key or suspended account. |