# Get ACH Deposit Limit

<table data-header-hidden><thead><tr><th width="74.8046875" align="center"></th><th></th></tr></thead><tbody><tr><td align="center"><mark style="color:green;"><strong>GET</strong></mark> </td><td>https://api.sfox.com/v1/account/weekly-deposit-limit</td></tr></tbody></table>

Retrieve a user's remaining weekly ACH deposit allowance.&#x20;

***

{% hint style="info" %}
Users may deposit up to $500,000 via ACH transfer per week in aggregate.&#x20;
{% endhint %}

## Request

{% hint style="info" %}
**Authentication:** This endpoint requires a [User Auth Token](https://docs.sfox.com/connect/rest-api/end-users/create-user-auth-token) for authentication. Requests using your Connect API Key will be rejected.
{% endhint %}

### Example Requests

{% tabs %}
{% tab title="Shell" %}

```sh
curl -H 'Authoriaztion: Bearer <USER_AUTH_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/account/weekly-deposit-limit'
```

{% endtab %}

{% tab title="NodeJS" %}

<pre class="language-javascript"><code class="lang-javascript">const axios = require ('axios');

axios({
<strong>    method: 'get',
</strong><strong>    url: 'https://api.sfox.com/v1/account/weekly-deposit-limit',
</strong><strong>    headers: {
</strong><strong>    'Authorization': 'Bearer &#x3C;USER_AUTH_TOKEN>'
</strong><strong>    }
</strong><strong>}).then(response => {
</strong><strong>    console.log(response)
</strong><strong>}).catch(err => {
</strong><strong>    console.error(err)
</strong><strong>    });
</strong>
</code></pre>

{% endtab %}

{% tab title="Python" %}

```python
import requests

data = requests.get(
    "https://api.sfox.com/v1/account/weekly-deposit-limit',
    headers={
        "Authorization": "Bearer <USER_AUTH_TOKEN>",
    }
)
print(data)
```

{% endtab %}
{% endtabs %}

## Response

### Response Body

<table><thead><tr><th width="230.31640625">Name</th><th width="105">Type</th><th>Description</th></tr></thead><tbody><tr><td><strong><code>weekly_deposit_limit</code></strong></td><td>number</td><td>The user's remaining weekly ACH deposit allowance. Remaining allowance = limit - ACH deposits.</td></tr></tbody></table>

### Responses

<details>

<summary><mark style="color:green;">200</mark> OK</summary>

```json
{
    "data": {
        "weekly_deposit_limit": 5000 
    }
}
```

</details>
