Pull NACHA reports

This request allows you to pull NACHA reports.

   Click here to learn more about this request

NACHA processors generate a batch file each day that you can export. This Elasticsearch request will give you a list of all the NACHA reports between two dates.

You can also GET NACHA Files Reports, but that request doesn't let you specify a time frame. Here is an example of a NACHA search query.

{
    "search": {
        "size": 10,
        "from": 0,
        "track_total_hits": true,
        "rest-total-hits-as-int": false,
        "query": {
            "bool": {
                "filter": {
                    "range": {
                        "created": {
                            "gte": "2025-04-01",
                            "lte": "2025-04-17"
                        }
                    }
                }
            }
        },
        "sort": []
    }
}

For more information, see our article Using Nacha files.


Results

Returns a results object with a list of NACHA reports matching the search query parameters after a successful lookup.

Language
Credentials
Click Try It! to start a request and see the response here!