> 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/withdraw-order-v2/withdraw.md).

# Withdraw

**Request URL：**

* `/v1`/token/withdraw

**Method:**

* POST

**Supported Symbol**

* TRC20

**Parameter:**

| Parameter name | Required | Type   | Explain                     |
| -------------- | -------- | ------ | --------------------------- |
| merchant\_id   | Yes      | string |                             |
| hash           | Yes      | string |                             |
| data           | Yes      | object |                             |
| —chain         | Yes      | string | TRON                        |
| —symbol        | Yes      | number | Token symbol (e.g., "usdt") |
| —address       | Yes      | string |                             |
| —amount        | Yes      | number |                             |
| —nonce         | Yes      | string |                             |
| —timestamp     | Yes      | number |                             |

**Request example**

```json
{
  "merchant_id": "9cc5c-d243a-9f952-66b92",     // Replace with your actual merchant ID
  "hash": "sm2uliyCbmCP0ISZw/Cm41qO3jbww7VdoH27MLWfrcDHY7IfiEPIC72VCovIlEfmeQAI3wFrKoZiflbCJKpFOA==",          // Replace with the actual encrypted hash
  "data": {
    "chain": "tron",                        // Blockchain network (e.g., "tron")
    "symbol": "usdt",                        // Token symbol (e.g., "usdt")
    "address": "TJCBzku1S8TPTgyyk3Ja4kepk1BFDQAVq1", // Withdrawal address
    "amount": 1,                            // Amount to withdraw
    "nonce": "abcde12345",               // Randomly generated string for uniqueness
    "timestamp": 1627893600                 // Current timestamp (in seconds)
  }
}

```

**Return example**

```json
  {
    "statusCode": 200,
    "order_id" : "17188041436139639757"
}
```

**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></tbody></table>
