# Get your account details

The Business API lets you list all of **your own** accounts, or fetch details of a specific account.

- You can [retrieve basic details](#get-basic-account-details), such as the currency and balance, for all of your accounts or for one specific account.
- You can also [fetch full bank details](#get-full-bank-details-of-your-account) for a specific account.

## Get basic account details

The basic account details include the account's ID, name, its balance and currency.
They also indicate whether the account is active or not, whether it's visible to other businesses on Revolut, when it was created and when it was last updated.

### List all your accounts

To get the list of all your accounts with their basic details, make a `GET` request to the `/accounts` endpoint.

To see example requests and responses:

[See the API reference: Retrieve all accounts](/docs/api/business#get-accounts)

### Get the details of a specific account

Alternatively, you can fetch those details for one specific account by providing the account's ID.

To see example requests and responses:

[See the API reference: Retrieve an account](/docs/api/business#get-account)

## Get full bank details of your account

You can also get the full bank details of one of your accounts specified by the account ID.
To do that, you must make a request to the dedicated `/accounts/{account_id}/bank-details` endpoint.

The details include information such as the account number, the name and address of the account owner, i.e. your business (`beneficiary` & `beneficiary_address` respectively), or the schemes available for this account (e.g. `sepa`, `elixir`).
Depending on the account, it can also include details such as its IBAN, BIC, sort code etc.

To see example requests and responses:

[See the API reference: Retrieve account's full bank details](/docs/api/business#get-account-details)