> For the complete documentation index, see [llms.txt](https://developers.aixchain.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.aixchain.com/aixc-and-arc-token/arc/query-arx-balance.md).

# Query ARX balance

**HTTP API：**

```http
wallet/getaccount
Description: Query an account information

demo: curl -X POST  http://172.104.51.182:16667/wallet/getaccount -d 
'{
    "address": "414203485a535a4072C9FBFaADDfe2A010AD0BcdB0"
}'
Parameter address: Default hexString
Return: Account object
```

**Welweb Example：**

```javascript
const privateKey = "..."; 
const address = "AFzFXoQCgUeoApjejKM9B46NgFGHXvUyKz";  
//Get account information，Query the aixc balance by the balance in the return value.
let tradeobj = await aixcWeb.aixc.getAccount(
      address,
);
console.log('- Output:', tradeobj, '\n');
```
