> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tronrental.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Withdrawals

> Withdraw TRX from your account

## Create Withdrawal

<div>
  `POST /api/v1/account/withdrawal`
</div>

Withdraws TRX to any TRON address. Fee: 1 TRX.

### Request body

<ParamField body="to_address" type="string" required>
  Destination TRON address
</ParamField>

<ParamField body="amount_trx" type="string" required>
  Amount to withdraw in TRX
</ParamField>

<ParamField body="totp_code" type="string">
  2FA code (if 2FA is enabled)
</ParamField>

### Example

```bash theme={null}
curl -X POST https://api.tronrental.com/v1/account/withdrawal \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "to_address": "TDestinationAddress...",
    "amount_trx": "100"
  }'
```

```json Response theme={null}
{
  "id": 56,
  "to_address": "TDestinationAddress...",
  "amount_trx": "100.00",
  "fee_trx": "1.00",
  "status": "completed",
  "tx_hash": "a1b2c3d4e5f6...",
  "created_at": "2026-03-05T12:00:00Z"
}
```

## List Withdrawals

<div>
  `GET /api/v1/account/withdrawals`
</div>

Returns your withdrawal history.

```bash theme={null}
curl https://api.tronrental.com/v1/account/withdrawals \
  -H "X-API-Key: your_api_key"
```

```json Response theme={null}
[
  {
    "id": 56,
    "to_address": "TDestinationAddress...",
    "amount_trx": "100.00",
    "fee_trx": "1.00",
    "status": "completed",
    "tx_hash": "a1b2c3d4e5f6...",
    "created_at": "2026-03-05T12:00:00Z"
  }
]
```

### Withdrawal statuses

| Status      | Description                  |
| ----------- | ---------------------------- |
| `pending`   | Queued for processing        |
| `completed` | TRX sent, tx\_hash available |
| `failed`    | Failed, amount refunded      |
