Check Balance

Get the balance of your CaptchaSonic account.

/getTaskResult

Retrieve your account balance and plan details with the following API request. Get apiKey from https://my.captchasonic.com


GEThttps://api.captchasonic.com/balance?apiKey=sonic_xxxxxx
Hostapi.captchasonic.com

URL Parameters

ParameterTypeValue
apiKeystringYOUR API KEY.

Response Codes

CodeDescription
200 OKSuccessful request. Returns balance information.
401 UnauthorizedInvalid or missing API key.
403 ForbiddenAccess denied due to insufficient permissions.
429 Too Many RequestsRate limit exceeded.
500 Internal Server ErrorAn error occurred on the server.

Sample Request

GEThttps://api.captchasonic.com/balance?apiKey=sonic_xxxxxx
Hostapi.captchasonic.com

Response Body

{
    "status": "ok",
    "balance": 99.99,
    "username": "user",
    "plan": {
        "planId": "",
        "active": 0,
        "planType": "",
        "minLimit": 0,
        "minLimitUsed": 0,
        "type": "",
        "dailyLimit": 0,
        "dailyLimitUsed": 500,
        "start": 0,
        "end": 0,
        "planLimit": 0,
        "planLimitUsed": 0,
        "refill": 1734339963,
        "auto_renew": false,
        "shared": false
    }
}