Skip to content

List

List financial accounts
get/v1/financial_accounts

Retrieve information on your financial accounts including routing and account number.

Query Parameters
account_tokenstring
optional

List financial accounts for a given account_token or business_account_token

formatuuid
business_account_tokenstring
optional

List financial accounts for a given business_account_token

formatuuid
typeenum
optional
Accepts one of the following: "ISSUING", "OPERATING", "RESERVE"

List financial accounts of a given type

Hide ParametersShow Parameters
"ISSUING"
"OPERATING"
"RESERVE"
Returns
dataarray of tokenstringaccount_tokenstringcreatedstringcredit_configurationobjectis_for_benefit_ofbooleannicknamestringstatusenumtypeenumupdatedstringaccount_numberstringrouting_numberstringsubstatusenumFinancialAccount
has_moreboolean
Request example Request
curl https://api.lithic.com/v1/financial_accounts \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "b68b7424-aa69-4cbc-a946-30d90181b621",
      "account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "created": "2019-12-27T18:11:19.117Z",
      "credit_configuration": {
        "charged_off_reason": "DELINQUENT",
        "credit_limit": 0,
        "credit_product_token": "credit_product_token",
        "external_bank_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
        "financial_account_state": "PENDING",
        "is_spend_blocked": true,
        "tier": "tier"
      },
      "is_for_benefit_of": true,
      "nickname": "nickname",
      "status": "OPEN",
      "type": "ISSUING",
      "updated": "2019-12-27T18:11:19.117Z",
      "account_number": "account_number",
      "routing_number": "routing_number",
      "substatus": "CHARGED_OFF_DELINQUENT"
    }
  ],
  "has_more": true
}