GET
/
account
/
credits
Get Current Balance
curl --request GET \
  --url https://app.fullenrich.com/api/v1/account/credits \
  --header 'Authorization: Bearer <token>'
{
"balance": 5000
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

balance
number

Number of credits available on your workspace

Examples:

5000