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

# Get current account

> Read the authenticated user's current account context

`GET /api/v2/accounts/current`

Returns the account your API key is currently operating as, including your role and the registered domain. Use it to confirm context before running admin-scoped account or domain operations.

## Request

```bash curl theme={null}
curl https://api.interchange.io/api/v2/accounts/current \
  -H "Authorization: Bearer $SCOPE3_API_KEY"
```

## Parameters

None. The account is resolved from the API key.

## Response

```json theme={null}
{
  "id": 100,
  "company": "Northwind Media",
  "name": "Northwind",
  "role": "ADMIN",
  "customerDomain": "northwind.example",
  "standing": {
    "creditLimit": 500000,
    "currency": "USD"
  }
}
```

| Field            | Type           | Notes                                                                                                                   |
| ---------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------- |
| `id`             | integer        | ID of the current account                                                                                               |
| `company`        | string         | Company name                                                                                                            |
| `name`           | string         | Display name                                                                                                            |
| `role`           | string         | Your role on this account (`MEMBER`, `ADMIN`, `SUPER_ADMIN`). Omitted when not applicable                               |
| `customerDomain` | string \| null | The account's registered domain, or `null` if unset                                                                     |
| `standing`       | object         | **Admin-only.** Account standing. Present **only when the caller is `ADMIN` or above**; omitted for members. See below. |

### `standing` (admin only)

Returned only when your role on the account is `ADMIN` or `SUPER_ADMIN`. It carries the account's credit-limit posture and is resolved with organization fallback — an account under an organization reflects the credit limit it inherits from that organization.

| Field         | Type            | Notes                                                                                                                                                                                                                                                           |
| ------------- | --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `creditLimit` | integer \| null | Credit limit beyond the funded balance, in minor currency units (USD cents), absolute (not monthly). `null` or `0` means the organization has **no credit line** — it must apply for credit or contact Scope3; `>0` is the granted credit ceiling Scope3 fronts |
| `currency`    | string          | ISO 4217 currency code the `creditLimit` is denominated in. Defaults to `USD`                                                                                                                                                                                   |

## Errors

* `401 UNAUTHORIZED` — missing or invalid API key.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="Account tasks" href="/v2/storefront/account/tasks" icon="list-check">
    All account operations
  </Card>

  <Card title="List accounts" href="/v2/storefront/account/tasks/list-customer-accounts" icon="list">
    Accounts you can switch into
  </Card>

  <Card title="Account overview" href="/v2/storefront/account/overview" icon="building">
    Concepts and hierarchy
  </Card>
</CardGroup>
