Skip to main content
GET
/
v0
/
accounts
/
{account_id}
Get bank account
curl --request GET \
  --url https://api.getlemma.com/v0/accounts/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "account_Rv4nBt8xKw2pMh6s",
  "provider_id": "entity_k7mXp2vR9nTfBw4s",
  "name": "Operating Account",
  "account_number": "987654321",
  "routing_number": "101050001",
  "total_balance": 2450000,
  "available_balance": 2350000,
  "opened_at": "2026-01-15T09:30: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 single bank account.

Path parameters

account_id
string
required
The unique identifier of the bank account to retrieve.

Response

id
string
Unique identifier for the account, prefixed with account_.
provider_id
string
The ID of the provider that owns this account.
name
string
The name of the account.
account_number
string
The bank account number.
routing_number
string
The ABA routing number.
total_balance
integer
The total balance of the account in cents, including funds that are not yet available.
available_balance
integer
The balance available for use in cents. This excludes any held funds from pending transactions.
opened_at
string
The timestamp when the account was opened, in ISO 8601 format.
{
  "id": "account_Rv4nBt8xKw2pMh6s",
  "provider_id": "entity_k7mXp2vR9nTfBw4s",
  "name": "Operating Account",
  "account_number": "987654321",
  "routing_number": "101050001",
  "total_balance": 2450000,
  "available_balance": 2350000,
  "opened_at": "2026-01-15T09:30:00Z"
}