Account Abstraction
API Reference
Account
Check Native Balance

Check Native Balance

Check the native coin balance (e.g., ETH, MATIC) of a smart account.

Endpoint:

POST {{BASE_URL}}/v1/smart-account/balance/native

Request Body

{
  "accountId": "68027beb6a1ae347d38563d7"
}
  • accountId (string, required): The ID of the smart account to check.

Response

{
  "status": 200,
  "message": "success get native balance",
  "data": {
    "balance": "0",
    "formattedBalance": "0"
  }
}
  • balance (string): The raw balance in the smallest unit (wei, gwei, etc.).
  • formattedBalance (string): The human-readable balance.