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

# Adres Etkinlestir

> Blok zincirinde etkin olmayan bir TRON adresini etkinlestirin

## Adres Etkinlestir

Daha once hicbir islem almamis bir TRON adresini etkinlestirir. Adresin token alabilmesi icin gereklidir.

**Maliyet: 1,1 TRX** (bakiyenizden dusulur)

### Istek govdesi

<ParamField body="address" type="string" required>
  Etkinlestirilecek TRON adresi (T... formati)
</ParamField>

### Yanit

<ResponseField name="success" type="boolean">
  Etkinlestirmenin basarili olup olmadigi
</ResponseField>

<ResponseField name="tx_hash" type="string">
  Etkinlestirme islem hash'i
</ResponseField>

### Ornek

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