# Retrieve Account Retrieves the base set of account details for a given account ID Endpoint: GET /v1/accounts/deposits/{id} Version: 1.1.2 Security: OAuth2Flow ## Path parameters: - `id` (string, required) Account ID ## Header parameters: - `Authorization` (string) OAuth bearer token (see authentication flows) - `x-l2f-request-id` (string) Optional Unique ID per request, useful for fault resolution/diagnosis and audit. ## Response 200 fields (application/json): - `data` (object, required) - `data.id` (string, required) Unique Identifier for the account - defined by the Client during account open - `data.status` (string, required) Account Status - will determine servicing options on the account. * OPEN - Account is open and available for use in line with its product configuration * CLOSED - Account is permanently closed, no further actions can be performed on the account. * PENDING - Account is under additional review prior to moving to the OPEN or CLOSED state. No actions can be performed on the account. * FROZEN - Account has been temporarily locked for all actions (deposits, transfers, exchanges and withdrawals). * EDD - Account (and/or customer) requires enhanced due diligence to be performed. The accounts will operate as if frozen. * DORMANT - No activity has been seen in the last 12 months. The account is available for use. Enum: "OPEN", "CLOSED", "FROZEN", "PENDING", "EDD", "DORMANT" - `data.asset_type_id` (string, required) Asset type IDs follow a simple structure as follows: {$BLOCKCHAIN}_{$NETWORK}_{$CURRENCY_CODE} Simple asset type to test with include - ETHEREUM_SEPOLIA_ETH - ETHEREUM_SEPOLIA_USDC - SOLANA_DEVNET_SOL - BITCOIN_TESTNET_BTC - FIAT_TESTNET_USD - FIAT_TESTNET_USD - FIAT_MAINNET_USD - FIAT_TESTNET_EUR - `data.product_type` (string, required) * CLIENT - Accounts at the Client level for managing client treasury operations * DEPOSIT - Accounts at the Customer level account for managing customer funds on platform * VIRTUAL - Accounts at the Customer level account for tracking externally managed customer funds See [account concepts](#section/Concepts/Accounts) for additional details on these product types Enum: "CLIENT", "DEPOSIT", "VIRTUAL" - `data.product_id` (string, required) Client Product configuration this account respects. These are configured in the management portal. Default products include BASIC_DEPOSIT - `data.customer_id` (string, required) Customer ID for whom the account belongs to - `data.current_balance` (number, required) Full balance on the account including funds on hold - `data.available_balance` (number, required) Balance available for immediate spending (excludes held funds) ## Response 400 fields (application/json): - `errors` (array) Error List - `errors.code` (string) Layer2 Standard Error Code - `errors.description` (string) Error Description ## Response 401 fields (application/json): - `errors` (array) Error List - `errors.code` (string) Layer2 Standard Error Code - `errors.description` (string) Error Description ## Response 404 fields (application/json): - `errors` (array) Error List - `errors.code` (string) Layer2 Standard Error Code - `errors.description` (string) Error Description ## Response 500 fields (application/json): - `errors` (array) Error List - `errors.code` (string) Layer2 Standard Error Code - `errors.description` (string) Error Description