> For the complete documentation index, see [llms.txt](https://3commas.gitbook.io/3commas-official-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://3commas.gitbook.io/3commas-official-api-docs/account/deposit-or-withdraw-networks-info.md).

# Deposit or withdraw networks info

**Description:** Shows information about the currency and each supported network for deposits and withdrawals available on the exchange account<br>

{% hint style="info" %}
This endpoint works for the following exchanges: *Binance Spot*, *Binance US*, *OKX Spot*, *Binance Broker*
{% endhint %}

<br>

**Permission:** ACCOUNTS\_READ\
**Security:** SIGNED\
\ <br>

***

<mark style="color:blue;">**GET**</mark>

<mark style="color:blue;">**/ver1/accounts/{account\_id}/networks\_info**</mark>

***

<br>

## Path Parameter<br>

**account\_id**     `integer`     <mark style="color:orange;">required</mark>\
Unique 3Commas ID for this exchange account entity

<br>

## Query Parameter<br>

**purpose**     `integer`\
Filter currencies with `deposit` or `withdraw` enabled

<br>

## Parameters response<br>

| Name                                      | Type               | Description                                                                                                                                    |
| ----------------------------------------- | ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| **currency**                              | `integer`          | The name of currency                                                                                                                           |
| **name**                                  | `integer`          | The full name of the currency                                                                                                                  |
| **deposit\_enable**                       | `boolean`          | Indicates whether currency deposit is available for this account                                                                               |
| **withdraw\_enable**                      | `boolean`          | Indicates whether currency withdrawal is available for this account                                                                            |
| **network\_list\[network]**               | `string`           | The name of network                                                                                                                            |
| **network\_list\[default]**               | `boolean`          | Indicates whether this network is the main one for deposits and withdrawals                                                                    |
| **network\_list\[deposit\_enable]**       | `boolean`          | Indicates whether currency deposit is available for this network                                                                               |
| **network\_list\[withdraw\_enable]**      | `boolean`          | Indicates whether currency withdrawal is available for this network                                                                            |
| **network\_list\[deposit\_tip]**          | `string` or `null` | Tip or notice related to deposits                                                                                                              |
| **network\_list\[withdraw\_tip]**         | `string` or `null` | Tip or notice related to withdrawals                                                                                                           |
| **network\_list\[special\_tip]**          | `string` or `null` | Additional information regarding specific network requirements                                                                                 |
| **network\_list\[network\_name]**         | `string` or `null` | The full name of the network                                                                                                                   |
| **network\_list\[network\_url]**          | `string` or `null` | The URL of the network                                                                                                                         |
| **network\_list\[address\_regexp]**       | `string` or `null` | Regular expression (regex) used to validate Address                                                                                            |
| **network\_list\[withdraw\_fee]**         | `string` or `null` | Fee charged for withdrawals                                                                                                                    |
| **network\_list\[withdraw\_min]**         | `string` or `null` | Minimum withdrawal amount                                                                                                                      |
| **network\_list\[withdrawMax]**           | `string` or `null` | The maximum possible withdrawal amount                                                                                                         |
| **network\_list\[withdrawMultiple]**      | `string` or `null` | Minimum increment for withdrawal amounts                                                                                                       |
| **network\_list\[memo\_regexp]**          | `string` or `null` | Regular expression (regex) used to validate MEMO                                                                                               |
| **network\_list\[label]**                 | `string` or `null` | Label for the additional field (e.g., `MEMO` or `Tag`)                                                                                         |
| **network\_list\[require\_address\_tag]** | `boolean`          | <p>Specifies whether an additional field is required when depositing or withdrawing.<br>For example, <code>MEMO</code> or <code>Tag</code></p> |

\ <br>

## Example request<br>

```
GET /ver1/accounts/12345678/networks_info
```

\ <br>

## Example Response and errors<br>

<details>

<summary>Status: 200 OK</summary>

<br>

```json

    {
        "currency": "BTC",
        "name": "Bitcoin",
        "deposit_enable": true,
        "withdraw_enable": true,
        "network_list": [
            {
                "network": "BNB",
                "default": false,
                "deposit_enable": false,
                "withdraw_enable": false,
                "deposit_tip": "Wallet Maintenance, Deposit Suspended",
                "withdraw_tip": "Wallet Maintenance, Withdrawal Suspended",
                "special_tip": "Both a MEMO and an Address are required to successfully deposit your BEP2-BTCB tokens to Binance.",
                "network_name": "BNB Beacon Chain (BEP2)",
                "network_url": null,
                "address_regexp": "^(bnb1)[0-9a-z]{38}$",
                "withdraw_fee": "0.0000093",
                "withdraw_min": "0.000019",
                "withdrawMax": "10000000000",
                "withdrawMultiple": "0.00000001",
                "memo_regexp": "^[0-9A-Za-z\\-_]{1,120}$",
                "label": "MEMO/Tag",
                "require_address_tag": false
            },
            {
                "network": "BTC",
                "default": true,
                "deposit_enable": true,
                "withdraw_enable": true,
                "deposit_tip": "",
                "withdraw_tip": "",
                "special_tip": "",
                "network_name": "Bitcoin",
                "network_url": null,
                "address_regexp": "^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[(bc1q)|(bc1p)][0-9A-Za-z]{37,62}$",
                "withdraw_fee": "0.0004",
                "withdraw_min": "0.0008",
                "withdrawMax": "10000000000",
                "withdrawMultiple": "0.00000001",
                "memo_regexp": "",
                "label": "",
                "require_address_tag": false
            }
        ]
    },
...
```

</details>

<br>

<details>

<summary>Status: 400 Bad Request</summary>

\
\`\`\`json { "error": "record\_invalid", "error\_description": "Invalid parameters", "error\_attributes": { "currency": \[ "is missing" ], "network": \[ "is missing" ] } } \`\`\`

</details>

<br>

<details>

<summary>Status: 403 Forbidden</summary>

\
\`\`\`json { "error": "Forbidden. Unavailable for this account." } \`\`\`

</details>
