> 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-ethereum-address.md).

# Get Ethereum Address

**Request URL：**

* `/v1/perm/getaddress`

**Method:**

* POST

**Supported Symbol**

* ERC20

**Parameter:**

| Parameter name | Required | Type   | Explain |
| -------------- | -------- | ------ | ------- |
| merchant\_id   | Yes      | string |         |
| hash           | Yes      | string |         |
| data           | Yes      | object |         |
| —symbol        | Yes      | string | erc20   |
| —timestamp     | Yes      | number |         |

**Request example**

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

**Return example**

```json
  {
    "statusCode": 200,
    "address": "0xBA5553f701AB78164082Ebe482104065C920Ff3a",
    "symbol": "erc20"
}
```

**Return parameter description**

<table><thead><tr><th>Parameter name</th><th width="169.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 ERC20 tokens</td></tr><tr><td>symbol</td><td>string</td><td>symbol</td></tr></tbody></table>
