v1

latestOpenAPI 3.0.32026-07-1320201.0 MB
Tron Addresses

Create Address

Creates a new address wich can be used to send and receive crypto currencies, ERC20 and ERC721 tokens. please provide a stron password within the request body. You will need the password everytime you interact with your address.

There are two ways to create an Address:

  • unsecure: You will directly get the private key of your address which can be used to create transactions
  • secure: You define a password, the privatekley will use this password as well as our own encryption chain to store the privatekey on our database. You can use this password instead of a private key to create transactions
<aside class="notice">We do not store Passowrds! If you lose it, we cannot restore your wallet! </aside>
post/api/v2/tron/addresses

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

passwordstring

Example request

{
  "password": "|]|{+-"
}

Response

OR

Example response

{
  "status": 201,
  "ok": true,
  "message": "Address created",
  "data": [
    {
      "privateKey": "59f1c6200e01a2ca9471411f10198bfa63678d0e87cc2ca30f9c4a68dee78edc",
      "publicKey": "040fe6e677442c36f7fdd5535ba3ff1cef0110d78363420f7e24b65298990e3467aed68b9a67e1396d84753db25b32a2fa3e1fc0a673f01638e9bcfab2d8f4ceb5",
      "hexAddress": "41a56a6505ffbee78eb916dd44f4846874deddaebd",
      "address": "TR3qx91smURF3R455V1ubqtoUsZbgqikfg"
    }
  ]
}