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

# Activate Address

> Activate an inactive TRON address on the blockchain

## Activate Address

Activates a TRON address that has never received any transaction. Required before the address can receive tokens.

**Cost: 1.1 TRX** (deducted from your balance)

### Request body

<ParamField body="address" type="string" required>
  TRON address to activate (T... format)
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Whether activation was successful
</ResponseField>

<ResponseField name="tx_hash" type="string">
  Activation transaction hash
</ResponseField>

### Example

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