v1
latestOpenAPI 3.0.32026-07-1320201.0 MBTron Transactions
Send TRC10 transaction
This method creates a new ERC10 transaction. <br> If the transaction is successful, it will return the transaction hash. <br> If the transaction fails, it will return an error message. <br>
post/api/v2/tron/transactions/trc10
Headers
X-Network'testnet' | 'mainnet'
Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.
Authorizationstring required
Bearer token for authorization. Required for authenticated endpoints.
Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data' required
The MIME type of the request body.
Request body
Example request
{
"from": "TLkkCeNdJKPNUwucdro84WjswkzM62LCTH",
"to": "TUwmZghA7u2GxGxKaxM1mkCmsTF4wHs4vp",
"tokenId": "1004920",
"amount": 1,
"password": "password123",
"privatekey": "0x123456"
}Response
Succesfully created transaction
Example response
{
"status": 201,
"ok": true,
"message": "Succesfully created transaction",
"data": {
"txid": "0x73344d178812d4919e9002c560781f288030edf72ece88823ef1c377dfb71f27"
}
}