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

API_KEY

string

yes

API Key proxy in page: https://betacaptcha.com/proxy

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

Last updated