> 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/trc-10-token/easytransferasset.md).

# EasyTransferAsset

**Body params**:&#x20;

* `privateKey` - Private key, default hexString
* `toAddress` - To address, default hexString
* `assetId` - Token id
* `amount` - Token transfer amount
* `visible` - Optional, Whether the address is in base58 format.

**Request**

```
curl --request POST \
     --url https://tron.api.watchdata.io/wallet/easytransferasset \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --data '
{
     "toAddress": "41e552f6487585c2b58bc2c9bb4492bc1f17132cd0",
     "assetId": "1000001",
     "passPhrase": "string",
     "amount": 20,
     "visible": true
}
'
```

**Response**

```
OK
```
