> For the complete documentation index, see [llms.txt](https://hyperhashing.gitbook.io/hyperhashing-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperhashing.gitbook.io/hyperhashing-api/permanent-address-v1/get-tron-address.md).

# Get Tron Address

**Request URL：**

* `/v1/gettronaddress`

**Method:**

* POST

**Supported Symbol**

* TRON

**Parameter:**

| Parameter name     | Required | Type   | Explain                |
| ------------------ | -------- | ------ | ---------------------- |
| merchant\_id       | Yes      | string |                        |
| hash               | Yes      | string |                        |
| data               | Yes      | object |                        |
| —symbol            | Yes      | string | tron                   |
| —timestamp         | Yes      | number |                        |
| —externalReference | No       | string | a-z, 0-9, length 12-18 |

**Request example**

```json
 {
  "merchant_id": "9cc5c-d243a-9f952-66b92",
  "hash": "sm2uliyCbmCP0ISZw/Cm41qO3jbww7VdoH27MLWfrcDHY7IfiEPIC72VCovIlEfmeQAI3wFrKoZiflbCJKpFOA==",
  "data": {
    "symbol": "tron",
    "timestamp": 1582886573
  }
}
```

**Return example**

```json
  {
    "statusCode": 200,
    "address": "TY2yqicRpTkGFCN4nNbqyoUY6tdhm3ADpP",
    "symbol": "tron"
}
```

**Return parameter description**

<table><thead><tr><th>Parameter name</th><th width="151.33333333333331">Type</th><th>Explain</th></tr></thead><tbody><tr><td>statusCode</td><td>int</td><td></td></tr><tr><td>address</td><td>string</td><td>Generated permanent address for TRC20 tokens</td></tr><tr><td>symbol</td><td>string</td><td>symbol</td></tr></tbody></table>
