# Account Status API

Check wallet balance and status.

## Endpoint
`POST https://api.moolre.com/open/account/status`

## Headers
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-USER | string | Yes | Username |
| X-API-KEY | string | Yes | Secret Key |

## Request Parameters
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 1. |
| accountnumber | string | Yes | Account number to check. |

## Responses
### 200 - Success
Balance and status returned.

```json
{
  "status": 1,
  "code": "ACC03",
  "message": "Success",
  "balance": "1000.00"
}
```

