> ## 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 account context the request authenticates as

`GET /api/v2/accounts/current`

Returns the account the authenticated user is currently operating as, including the user's `role` on that account and the registered domain.

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

## Response

```json theme={null}
{
  "id": 100,
  "company": "Acme Inc",
  "name": "Acme",
  "role": "ADMIN",
  "customerDomain": "acme.com"
}
```

| Field            | Type           | Notes                                                        |
| ---------------- | -------------- | ------------------------------------------------------------ |
| `id`             | integer        | ID of the current account                                    |
| `company`        | string         | Company name                                                 |
| `name`           | string         | Display name                                                 |
| `role`           | string         | User role on this account (`MEMBER`, `ADMIN`, `SUPER_ADMIN`) |
| `customerDomain` | string \| null | The account's registered domain, or `null` if unset          |

## Errors

* `401 UNAUTHORIZED` — missing or invalid bearer token.

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

## Related

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

  <Card title="Account overview" href="/v2/buyer/account/overview" icon="building">
    Context, hierarchy, and membership
  </Card>

  <Card title="List accounts" href="/v2/buyer/account/tasks/list-customer-accounts" icon="list">
    Accounts you can access
  </Card>
</CardGroup>
