cURL
curl --request GET \ --url https://api.example.com/v0/accounts
{ "data": [ { "id": "<string>", "name": "<string>", "total_balance": 123, "available_balance": 123 } ] }
Retrieve a list of your bank accounts with their current balances.
Show Account object
curl "https://api.getlemma.com/v0/accounts" \ -H "Authorization: Bearer lm_key_your_api_key"
{ "data": [ { "id": "d4f5a1b2-3c4d-4e5f-8a6b-7c8d9e0f1a2b", "name": "Operating Account", "total_balance": 2450000, "available_balance": 2350000 }, { "id": "e5a6b7c8-9d0e-4f1a-8b2c-3d4e5f6a7b8c", "name": "Collections Account", "total_balance": 875430, "available_balance": 875430 } ] }
Contact support