Skip to content

Report Failure

Report when a proxy IP was blocked or failed, helping HydraSkill improve routing decisions.

POST /v1/proxy/{proxy_id}/report
ParameterTypeDescription
reasonstringblocked, captcha, timeout, rate_limited
status_codeintegerHTTP status code received
target_urlstringThe URL that was blocked
Terminal window
curl -X POST "https://api.hydraskill.ai/v1/proxy/px_abc123/report" \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"reason": "blocked", "status_code": 403}'
{
"acknowledged": true,
"action_taken": "ip_rotated",
"new_proxy_id": "px_def456"
}

With Auto-Heal enabled, failures are detected and handled automatically. Use this endpoint only when Auto-Heal is disabled or for manual reporting.