Get balance

The object contains data for Google ReCaptcha2 solving task.

This type of captcha might be solved a bit longer than usual image captcha, but this issue is compensated by the fact that g-captcha-response value we send to you is valid for the next 60 seconds after we solves your ReCaptcha2.

Object structure

Parameter
Type
Required
Value

api_token

string

yes

Your unique account key, API key

Code example (Python)

import requests

json_data = {
    "api_token": "YOUR_API_KEY"
}
balance = requests.post("https://betacaptcha.com/api/balance", json=json_data)

print(balance.json())

Last updated