CaptchaSolvCaptchaSolv
Endpoints

GET /balance

Check your account balance and subscription details.

POST /getBalance

Returns your current account balance and, optionally, subscription/plan details.

Request

New format
{
  "api_key": "YOUR_API_KEY"
}
Legacy format
{
  "clientKey": "YOUR_API_KEY"
}
FieldTypeRequiredDescription
api_keystringYesYour API key.

Response

New format — includes full account info:

{
  "errorId": 0,
  "balance": 12.5432,
  "currency": "USD",
  "account": {
    "balance": 12.5432,
    "currency": "USD",
    "plan": {
      "name": "Pay-as-you-go",
      "threads": 5,
      "valid_until": "2026-07-12T00:00:00Z"
    }
  }
}
FieldTypeDescription
errorIdinteger0 = success.
balancefloatCurrent account balance in USD.
currencystringAlways "USD".
account.balancefloatSame as top-level balance.
account.planobjectActive plan details. null if no active plan.
account.plan.namestringPlan name (e.g. "Pay-as-you-go", "Pro").
account.plan.threadsintegerMax concurrent solving threads.
account.plan.valid_untilstringPlan expiry date (ISO 8601). Omitted for pay-as-you-go.

Legacy format — returns only the balance:

{
  "errorId": 0,
  "balance": 12.5432
}

Error:

{
  "errorId": 2,
  "errorMessage": "Invalid API key"
}

On this page