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

# Ativar Endereço

> Ativar um endereço TRON inativo na blockchain

## Ativar Endereço

Ativa um endereço TRON que nunca recebeu nenhuma transação. Necessário antes que o endereço possa receber tokens.

**Custo: 1,1 TRX** (deduzido do seu saldo)

### Corpo da requisição

<ParamField body="address" type="string" required>
  Endereço TRON a ativar (formato T...)
</ParamField>

### Resposta

<ResponseField name="success" type="boolean">
  Se a ativação foi bem-sucedida
</ResponseField>

<ResponseField name="tx_hash" type="string">
  Hash da transação de ativação
</ResponseField>

### Exemplo

```bash theme={null}
curl -X POST https://api.tronrental.com/v1/energy/activate \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"address": "TNewInactiveAddress..."}'
```

```json Response theme={null}
{
  "success": true,
  "tx_hash": "a1b2c3d4e5f6..."
}
```
