> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Balance

> Check the current balance of a specific asset wallet

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField body="asset_id" type="string" required>
  The ID of the asset wallet to check the balance for.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X POST 'https://crypto-api.yativo.com/api/v1/balance/check' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
    -H 'Content-Type: application/json' \
    -d '{
      "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Balance retrieved successfully",
    "data": {
      "asset_id": "ast_01HX9KZMB3F7VNQP8R2WDGT4EA",
      "chain": "solana",
      "ticker": "USDC_SOL",
      "wallet_address": "7nZ9X4mQkLpR3sVwC8tF2bG6hJ5nM1yK",
      "balance": "1250.000000",
      "balance_usd": "1250.00",
      "last_updated": "2026-03-26T12:00:00Z"
    }
  }
  ```
</ResponseExample>
