Find Banks

This method returns a list of banks based on the provided search parameters. You can search by bank name, bank ID, or specific tags.
Provide your bearer token in the Authorization header when making requests to protected resources. Example: Authorization: Bearer 123.

Query Params
string
required

Text search by bank name or ID.

string
enum

Search by tag.

Headers
string
required

Bearer token for authenticating the request. Example: Authorization: Bearer 123.

Responses

{
  "rows": [
    {
      "name": "Deutsche Bank",
      "title": "DB",
      "title_en": "Deutsche Bank",
      "alias": "DB_ALS",
      "currency": "EUR",
      "country": "DE",
      "enabled": true
    }
  ]
}

{
  "error": "ERROR_ACCESS_TOKEN_INVALID",
  "message": "Access token is invalid.",
  "statusCode": 400
}

{
  "error": "ERROR_TOKEN_EXPIRED",
  "message": "Access token has expired.",
  "statusCode": 401
}
Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json