Skip to main content
GET
/
v0
/
external-accounts
List external accounts
curl --request GET \
  --url https://api.getlemma.com/v0/external-accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "external_account_Hd9vWs4mFn7xYk2t",
      "entity_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-20T18:45:00Z",
      "nickname": "Owner's Account"
    },
    {
      "id": "external_account_Bx5nTm8hKw3pVd7c",
      "entity_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-19T18:45:00Z",
      "nickname": "Payroll"
    }
  ]
}
Returns all saved external accounts for an entity, ordered by most recent first.

Query parameters

entity_id
string
required
The ID of the entity whose external accounts to list. You can find entity IDs using the List entities endpoint.

Response

data
object[]
The list of external account objects.
{
  "data": [
    {
      "id": "external_account_Hd9vWs4mFn7xYk2t",
      "entity_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-20T18:45:00Z",
      "nickname": "Owner's Account"
    },
    {
      "id": "external_account_Bx5nTm8hKw3pVd7c",
      "entity_id": "entity_k7mXp2vR9nTfBw4s",
      "created_at": "2026-03-19T18:45:00Z",
      "nickname": "Payroll"
    }
  ]
}