> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account Information

> Retrieve your account information and usage statistics

Retrieve detailed information about your account, including balance, email, timestamps, and restrictions.

<Note>
  The bare `/account` path is still supported as a legacy alias of `/v1/account`.
</Note>

## Request

```bash theme={null}
curl --location 'https://api.unifically.com/v1/account' \
--header 'Authorization: Bearer YOUR_API_KEY'
```

## Response

### Success Response

```json theme={null}
{
    "success": true,
    "code": 200,
    "data": {
        "user_id": 12345,
        "balance_usd": 100.50,
        "email": "user@example.com",
        "created_at": 123,
        "updated_at": 123,
    }
}
```

## Response Fields

<ResponseField name="success" type="boolean">
  Indicates whether the request was successful (`true`) or failed (`false`)
</ResponseField>

<ResponseField name="code" type="integer">
  HTTP status code (200 for success)
</ResponseField>

<ResponseField name="data" type="object">
  Account information

  <ResponseField name="user_id" type="integer">
    Unique user identifier
  </ResponseField>

  <ResponseField name="balance_usd" type="decimal">
    Current account balance in USD
  </ResponseField>

  <ResponseField name="email" type="string">
    Account email address
  </ResponseField>

  <ResponseField name="created_at" type="integer">
    Unix timestamp of account creation
  </ResponseField>

  <ResponseField name="updated_at" type="integer">
    Unix timestamp of last account update
  </ResponseField>
</ResponseField>

## Authentication

All requests require a valid API key in the Authorization header:

```
Authorization: Bearer YOUR_API_KEY
```

<Info>
  Get your API key from the [Unifically Dashboard](https://unifically.com/dashboard).
</Info>
