---
page_title: List all ACH debit collections
product: lotuspay
platform: web
page_source: https://docs.juspay.io/lotuspay/web/core-resources/list-all-ach-debit-collections
openapi: https://docs.juspay.io/api/swagger?document=https%3A%2F%2Fdocs.juspay.io%2Flotuspay%2Fweb%2Fcore-resources%2Flist-all-ach-debit-collections
llms_txt: https://docs.juspay.io/llms.txt
product_llms_txt: https://docs.juspay.io/lotuspay/llms.txt
---

## API Version: default


# **List all ACH debit collections** 



You can see a list of your ACH debit collections. The ACH debit collections are returned sorted by creation date, with the most recent appearing first. You can use this API method and the limit parameter to page through ACH debit collections.

**ARGUMENTS** 


| Argument | Description |
|---|---|
| limit optional, default is 100	 | A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 100. |


**Returns**  A dictionary with a `data` property that contains an array of up to `limit` ACH debit collections and when you pass `page`  it will return you all the entries in the respective page. Each entry in the array is a separate ACH debit collection object. If no more ACH debit collections are available, the resulting array will be empty. If you provide a non-existent related object identifier, this call returns an error.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/ach_debit_collections

- Production: https://api.lotuspay.com/v1/ach_debit_collections

## Request Type: 
GET

## Content-Type: 
application/json

## Authorization:

#### Basic Auth:
Auth example
- Value:  sk_test_XjIHowXWSI23uvjepz2X82
## Sample Code Snippets:
### Sample Request and Response:

#### Request:
```Shell
$ curl https://api-test.lotuspay.com/v1/ach_debit_collections?limit=5 \
   -u sk_test_XjIHowXWSI23uvjepz2X82: \
   -G
```

#### Response:
```json
{
    "object": "list",
    "url": "/v1/ach_debit_collections",
    "has_more": false,
    "data": [
          {
              "id": "DO004433221AA"
          },
          {
              "id": "DO004433221BB"
          },
          {
              "id": "DO004433221CC"
          }
    ]
  }
  
```

## API Responses:
