List
List external bank accounts
get/v1/external_bank_accounts
List all the external bank accounts for the provided search criteria.
Query Parameters
account_tokenstring
optional
formatuuid
account_typesarray of enum
optional
countriesarray of string
optional
ending_beforestring
optional
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
page_sizenumber
optional
Page size (for pagination).
maximum100
minimum1
starting_afterstring
optional
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
statesarray of enum
optional
verification_statesarray of enum
optional
Returns
dataarray of object
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/external_bank_accounts \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"country": "country",
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"last_four": "last_four",
"owner": "owner",
"owner_type": "BUSINESS",
"routing_number": "routing_number",
"state": "ENABLED",
"type": "CHECKING",
"verification_attempts": 0,
"verification_method": "MANUAL",
"verification_state": "PENDING",
"account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"address": {
"address1": "x",
"city": "x",
"country": "USD",
"postal_code": "11201",
"state": "xx",
"address2": "x"
},
"company_id": "company_id",
"dob": "2019-12-27",
"doing_business_as": "doing_business_as",
"financial_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"name": "name",
"user_defined_id": "user_defined_id",
"verification_failed_reason": "verification_failed_reason"
}
],
"has_more": true
}