# TRON Transfers

Following are examples of the body of a [Create Transaction](/api/openapi/transactions/create_transaction_api_v1_transactions_post) request for a native TRON currency transfer and TRC-20 transfer.
The request should be signed, as demonstrated [here](/developers/authentication#request-signing).

See also details on [TRON Fees](/user-guide/manage-transactions/understand-transaction-fees/tron-fees).

Native

```json
{
  "vault_id": "432b199b-1f71-42bf-ba0b-33d512afa9de",
  "signer_type": "api_signer",
  "sign_mode": "auto",
  "type": "tron_transaction",
  "details": {
    "type": "tron_transfer",
    "to": {
      "type": "hex",
      "address": "TJCnKsPa7y5okkXvQAidZBzqx3QyQ6sxMW"
    },
    "value": {
      "type": "value",
      "value": "1000000000000000000"
    },
    "asset_identifier": {
      "type": "tron",
      "details": {
        "type": "native",
        "chain": "tron_mainnet"
      }
    },
    "memo": "<on-chain memo to be included in the transaction>"
  }
}
```

TRC-20

```json
{
  "vault_id": "432b199b-1f71-42bf-ba0b-33d512afa9de",
  "type": "tron_transaction",
  "details": {
    "type": "tron_transfer",
    "to": {
      "type": "hex",
      "address": "TJCnKsPa7y5okkXvQAidZBzqx3QyQ6sxMW"
    },
    "value": {
      "type": "value",
      "value": "1000000000000000000"
    },
    "asset_identifier": {
      "type": "tron",
      "details": {
        "type": "trc20",
        "trc20": {
	        "chain": "tron_mainnet",
	        "base58_repr": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
        }
      }
    },
    "memo": "string"
  }
}
```