GET
/
account
/
balance
curl --request GET \
  --url https://api.openmind.org/api/core/account/balance \
  --header 'Authorization: Bearer <token>'
{
  "balance": 100.5
}

OpenMind provides a secure way to check your account balance. This endpoint allows you to retrieve the current balance of your account, which can be useful for managing your resources and ensuring you have sufficient funds for API calls.

The JWT token is generated with Clerk and is used to authenticate your requests. Ensure you have the necessary permissions to access this endpoint.

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Successful response with account balance

The response is of type object.