List all bank_accounts

GET {{baseUrl}}/bank_accounts

Returns a list of your bankaccounts. The bankaccounts are returned sorted by creation date, with the most recently created bank_accounts appearing first.

Request Params

KeyDatatypeRequiredDescription
limitnumber(optional) How many results to return.
afterstring(optional) A reference to a list entry used for paginating to the previous set of entries. This field is pre-populated in the previous_url field in the return response.
beforestring(optional) A reference to a list entry used for paginating to the next set of entries. This field is pre-populated in the next_url field in the return response.
date_createdstring(optional) Filter by ISO-8601 date or datetime, e.g. { gt: '2012-01-01', lt: '2012-01-31T12:34:56Z' } where gt is ›, lt is ‹, gte is ≥, and lte is ≤.
include[]string(optional) Request that the response include the total count by specifying include[]=total_count.
metadatastring(optioinal) Filter by metadata key-value pair, e.g. metadata[customer_id]=987654

RESPONSES

status: OK

{"data":[{"id":"bank_0e3fb07eba0b35b","description":"Example bank account","metadata":{},"routing_number":"122100024","account_number":"1234564789","account_type":"company","signatory":"John Doe","bank_name":"JPMORGAN CHASE BANK, NA","verified":true,"date_created":"2019-03-30T13:13:22.200Z","date_modified":"2019-03-30T13:13:23.385Z","object":"bank_account"},{"id":"bank_eba93f7de3c02d9","description":"Example bank account","metadata":{},"routing_number":"122100024","account_number":"1234564789","account_type":"company","signatory":"John Doe","bank_name":"JPMORGAN CHASE BANK, NA","verified":true,"date_created":"2019-03-30T13:11:06.809Z","date_modified":"2019-03-30T13:11:07.872Z","object":"bank_account"}],"object":"list","next_url":"https://api.lob.com/v1/bank_accounts?limit=2\u0026after=eyJkYXRlT2Zmc2V0IjoiMjAxOS0wMy0zMFQxMzoxMTowNi44MDlaIiwiaWRPZmZzZXQiOiJiYW5rX2ViYTkzZjdkZTNjMDJkOSJ9","previous_url":null,"count":2}