> ## 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.

# Retiros

> Retirar TRX de tu cuenta

## Crear retiro

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

Retira TRX a cualquier direccion TRON. Comision: 1 TRX.

### Cuerpo de la solicitud

<ParamField body="to_address" type="string" required>
  Direccion TRON de destino
</ParamField>

<ParamField body="amount_trx" type="string" required>
  Monto a retirar en TRX
</ParamField>

<ParamField body="totp_code" type="string">
  Codigo 2FA (si la autenticacion de dos factores esta habilitada)
</ParamField>

### Ejemplo

```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"
}
```

## Listar retiros

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

Devuelve tu historial de retiros.

```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"
  }
]
```

### Estados del retiro

| Estado      | Descripcion                      |
| ----------- | -------------------------------- |
| `pending`   | En cola para procesamiento       |
| `completed` | TRX enviado, tx\_hash disponible |
| `failed`    | Fallido, monto reembolsado       |
