# Get balance (/en/docs/pix-processamento/endpoints/account/get_user_balance)

## GET /user/balance

`GET https://api.payzu.processamento.com/v1/user/balance`

Available and blocked balances.

### Responses

**200** Balances

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `balanceAvailable` | number | no | Balance free for withdrawals and transfers, in reais, of the account that owns the token. |
| `balanceBlocked` | number | no | Balance held and unavailable, in reais. |

**401** Unauthorized, missing or invalid Bearer token, or token lacks the required permission for this endpoint

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `status` | string | yes | Fixed marker of an error response. |
| `error` | string | yes | Name of the corresponding HTTP status. |
| `errorCode` | string | yes | Stable machine-readable error code, when available. |
| `message` | string | yes | Human-readable error message. |
| `statusCode` | integer | yes | HTTP status code. |
| `requestId` | string | yes | Unique request correlation ID (cuid). Include it when contacting support. |
| `details` | object[] | no | Field-level validation errors, when applicable. |
| `details.field` | string | yes | Path of the field rejected in validation, without the leading slash. |
| `details.message` | string | yes | Reason that field was rejected, in Portuguese. |
| `retryAfterSeconds` | integer | no | Seconds to wait before retrying. Present only on 429 responses. |