Tronergy Docs
Account

Issue TRX

Send TRX to an address (max 3 TRX per request). Only available when using an API key that has TRX issue permission (granted by admin).

POST
/api/account/issue-trx
Server
/api/account/issue-trx

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

Enter JWT token

In: header

Request Body

application/jsonRequired

address
Required
string

Tron wallet address to send TRX to.

amount
Required
number

Amount of TRX to send (max 3). Only allowed with API keys that have TRX issue permission (granted by admin).

Minimum: 0.000001Maximum: 3
curl -X POST "https://api.tronergy.io/api/account/issue-trx" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "THQbYWkPDChusW8gNSmrsHeM3Nd8NgrawJ",
    "amount": 1
  }'

{
  "txID": "string"
}