Get Proxy
This methob use to get proxy (IP Viet Nam)
GET /api/change_proxy?api_key={API_KEY}
HOST
https://www.betacaptcha.com
Object structure
Parameter
Type
Required
Value
Code example (Python)
import requests
API_KEY = "YOUR_API_KEY_PROXY"
change_proxy= requests.get(f"https://www.betacaptcha.com/api/change_proxy?api_key={API_KEY}")
print(change_proxy.json())
Response Success
{
"next_change": 60,
"proxy": "IP:PORT",
"success": true,
"timeout": 90
}
Response Fail
{
"current_IP": "IP:PORT",
"next_change": 10,
"proxy": null,
"success": true,
"timeout": 90
}
{
"success": false,
"description": "Please slow down your requests or your account will be locked."
}
Last updated