Join And Get Free Trial!

getBalance#


Beschrijving van de getBalance-methode

API-eindpunt: https://api.nextcaptcha.com/getBalance

methode: POST

Inhoudstype: application/json

Eigenschappen opvragen#

naamtypeVereistBeschrijving
clientKeySnaarJaUw API-sleutel

Voorbeeld aanvragen#

{
   "clientKey": "api key"
}

Voorbeeld van antwoord#

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

Voorbeeldcode#

# https://github.com/nextcaptcha/nextcaptcha-python
 
import os
import sys
from nextcaptcha import NextCaptchaAPI
 
client_key = os.getenv('NEXTCAPTCHA_KEY', "YOUR_CLIENT_KEY")
 
api = NextCaptchaAPI(client_key=client_key)
try:
  balance = api.get_balance()
except Exception as e:
  sys.exit(e)
 
else:
  sys.exit('Account balance: ' + str(balance))