List bank accounts
curl --request GET \
--url https://api.getlemma.com/v0/accounts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "account_Rv4nBt8xKw2pMh6s",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Operating Account",
"account_number": "123456789",
"routing_number": "021000021",
"total_balance": 2450000,
"available_balance": 2350000,
"opened_at": "2026-01-15T09:30:00Z"
},
{
"id": "account_Hn9wFj3cTd7yXk5v",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Collections Account",
"account_number": "987654321",
"routing_number": "021000021",
"total_balance": 875430,
"available_balance": 875430,
"opened_at": "2026-02-20T14:00:00Z"
}
]
}
Entities
List bank accounts
Retrieve all bank accounts associated with a specific entity.
GET
/
v0
/
accounts
List bank accounts
curl --request GET \
--url https://api.getlemma.com/v0/accounts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "account_Rv4nBt8xKw2pMh6s",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Operating Account",
"account_number": "123456789",
"routing_number": "021000021",
"total_balance": 2450000,
"available_balance": 2350000,
"opened_at": "2026-01-15T09:30:00Z"
},
{
"id": "account_Hn9wFj3cTd7yXk5v",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Collections Account",
"account_number": "987654321",
"routing_number": "021000021",
"total_balance": 875430,
"available_balance": 875430,
"opened_at": "2026-02-20T14:00:00Z"
}
]
}
Returns a list of bank accounts belonging to an entity.
Query parameters
The ID of the entity. You can find entity IDs using the List
entities endpoint.
Response
The list of account objects.
Show Account object
Show Account object
Unique identifier for the account, prefixed with
account_.The ID of the entity that owns this account.
The name of the account.
The bank account number.
The ABA routing number.
The total balance of the account in cents, including funds that are not
yet available.
The balance available for use in cents. This excludes any held funds from
pending transactions.
The timestamp when the account was opened, in ISO 8601 format.
{
"data": [
{
"id": "account_Rv4nBt8xKw2pMh6s",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Operating Account",
"account_number": "123456789",
"routing_number": "021000021",
"total_balance": 2450000,
"available_balance": 2350000,
"opened_at": "2026-01-15T09:30:00Z"
},
{
"id": "account_Hn9wFj3cTd7yXk5v",
"entity_id": "entity_k7mXp2vR9nTfBw4s",
"name": "Collections Account",
"account_number": "987654321",
"routing_number": "021000021",
"total_balance": 875430,
"available_balance": 875430,
"opened_at": "2026-02-20T14:00:00Z"
}
]
}
⌘I