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

# Get Account

> Retrieve detailed information about a specific account

## Path Parameters

<ParamField path="customer_id" type="string" required>
  The customer's external ID (starts with `cus_`)
</ParamField>

<ParamField path="account_id" type="string" required>
  The account's external ID (starts with `acc_`)
</ParamField>

## Response

<ResponseField name="id" type="string">
  Account identifier (starts with `acc_`)
</ResponseField>

<ResponseField name="object" type="string">
  Always returns `"account"`
</ResponseField>

<ResponseField name="customer_id" type="string">
  The customer's external ID
</ResponseField>

<ResponseField name="name" type="string">
  The account name
</ResponseField>

<ResponseField name="status" type="string">
  Account status: `active`, `suspended`, or `inactive`
</ResponseField>

<ResponseField name="balances" type="array">
  Array of balance objects for each currency

  <Expandable title="Balance Fields">
    <ResponseField name="currency" type="string">
      ISO 4217 currency code
    </ResponseField>

    <ResponseField name="currency_type" type="string">
      Type of currency: `fiat` or `crypto`
    </ResponseField>

    <ResponseField name="available_balance" type="string">
      Available balance for transactions (decimal string)
    </ResponseField>

    <ResponseField name="pending_payout" type="string">
      Amount pending in outgoing transfers (decimal string)
    </ResponseField>

    <ResponseField name="pending_payin" type="string">
      Amount pending in incoming transfers (decimal string)
    </ResponseField>

    <ResponseField name="total_balance" type="string">
      Total balance including pending amounts (decimal string)
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      ISO 8601 timestamp of last balance update
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="created" type="string">
  ISO 8601 timestamp when the account was created
</ResponseField>

<ResponseField name="updated" type="string">
  ISO 8601 timestamp when the account was last updated
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "acc_1234567890abcdef",
  "object": "account",
  "customer_id": "cus_abc123",
  "name": "Primary Trading Account",
  "status": "active",
  "balances": [
    {
      "currency": "USD",
      "currency_type": "fiat",
      "available_balance": "10000.50",
      "pending_payout": "250.00",
      "pending_payin": "500.00",
      "total_balance": "10750.50",
      "updated_at": "2024-01-15T12:30:00Z"
    },
    {
      "currency": "EUR",
      "currency_type": "fiat",
      "available_balance": "5000.25",
      "pending_payout": "0.00",
      "pending_payin": "100.00",
      "total_balance": "5100.25",
      "updated_at": "2024-01-14T08:00:00Z"
    }
  ],
  "created": "2024-01-01T00:00:00Z",
  "updated": "2024-01-15T12:30:00Z"
}
```
