GET
/
api
/
bot-accounts
/
proxies
List Proxies
curl --request GET \
  --url https://api.example.com/api/bot-accounts/proxies

Response

{
  "proxies": [
    {
      "id": "proxy-abc12345",
      "address": "http://user:pass@1.2.3.4:8080",
      "type": "http",
      "status": "active",
      "checkCount": 5,
      "failCount": 0,
      "assignedAccounts": ["acc-def67890"],
      "lastCheckedAt": "2026-03-30T12:00:00.000Z",
      "createdAt": "2026-03-30T10:00:00.000Z"
    }
  ]
}