Skip to main content
GET
/
v0
/
accounts
List bank accounts
curl --request GET \
  --url https://api.getlemma.com/v0/accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "account_Rv4nBt8xKw2pMh6s",
      "provider_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",
      "provider_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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getlemma.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns a list of bank accounts belonging to a provider.

Query parameters

provider_id
string
required
The ID of the provider. You can find provider IDs using the List providers endpoint.

Response

data
object[]
The list of account objects.
{
  "data": [
    {
      "id": "account_Rv4nBt8xKw2pMh6s",
      "provider_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",
      "provider_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"
    }
  ]
}