Skip to main content

3 .Verify wallet address

Verify wallet address

This function is used to verify the validity of a wallet address. By calling this interface, you can check whether a wallet address conforms to the format requirements of a specific blockchain and confirm whether it exists (if supported). This function supports multiple blockchain types, such as Bitcoin (BTC), Ethereum (ETH), etc.

GET
/openapi/chain/address/verify
NameTypeRequiredDescription
address string[1,128]yesWallet Address
chainstring[1,32] yesChain name
Response
NameTypeDescription
codeintBusiness status code
dataobjectData object
validbooleanAddress verification, true passes, false fails
msgstringBusiness message

Example Response

{ 
"code": 0,
"msg": "success",
"data": {
"valid": true
}
}