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

# Get Profile

> Get your account profile

## Get Profile

Returns your account profile information.

### Response

<ResponseField name="id" type="number">
  User ID
</ResponseField>

<ResponseField name="email" type="string">
  Email address (if set)
</ResponseField>

<ResponseField name="tron_address" type="string">
  Linked TRON address (if set)
</ResponseField>

<ResponseField name="balance_trx" type="string">
  Account balance in TRX
</ResponseField>

<ResponseField name="totp_enabled" type="boolean">
  Whether 2FA is enabled
</ResponseField>

<ResponseField name="created_at" type="string">
  Account creation timestamp
</ResponseField>

### Example

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

```json Response theme={null}
{
  "id": 1,
  "email": "user@example.com",
  "tron_address": "TYourAddress...",
  "balance_trx": "150.50",
  "totp_enabled": false,
  "created_at": "2026-01-15T10:00:00Z"
}
```
