> For the complete documentation index, see [llms.txt](https://docs.watchdata.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.watchdata.io/blockchain-apis/tron-api/address-utilities/validateaddress.md).

# 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"
}
```
