# ValidateAddress

**Return value**: True or false

**Body params**:

* `address` - Address should be in base58checksum, hexString, or base64 format.

**Request**

```
curl --request POST \
     --url https://tron.api.watchdata.io/wallet/validateaddress \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --data '
{
     "address": "4189139CB1387AF85E3D24E212A008AC974967E561"
}
'
```

**Response**

```
{
  "result": true,
  "message": "Hex string format"
}
```
