Loopay Bank API

The Bank API from Loopay — 1 operation(s) for bank.

Operations 1

GET /banks #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/loopay-bank-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

loopay-bank-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: loopay-api Affiliate Bank API
  version: 3.2.0
  description: " ## Loopay open API \n You will find a complete guide and information to start working with Loopay integrations as soon as possible, as well as support if you get lost, so let's dive right in! \n\n ## Integration guide\n For production, please contact your personal Looper.\n\n ## Authetication guide\n Loopay uses a token-based authentication system, which means that you will need to generate a token to be able to use the API. \n\n ### How to generate a token\n To generate a token, you will need to send a POST  request to the following endpoint: \n\n `/login`  [See  User/post ](/explorer/#/User/User.login)  \n\n  ⚠ **Disclaimer**: All examples listed below are run in a secure environment ready for testing."
  contact:
    name: Loopay Team
servers:
- url: https://api.loopay.com
tags:
- name: Bank
paths:
  /banks:
    get:
      x-controller-name: Bank
      x-operation-name: bankBases
      tags:
      - Bank
      description: "## Get banks\n Get all banks available"
      responses:
        '200':
          description: Array of BankBase model instances
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      example: 1
                    name:
                      type: string
                      example: Banco de Bogotá
                    countryId:
                      type: integer
                      example: 1
                    accountValidator:
                      type: object
                      properties:
                        type:
                          type: object
                          properties:
                            ahorros:
                              type: object
                              properties:
                                $id:
                                  type: string
                                  example: bank_ahorros_bancolombia
                                title:
                                  type: string
                                  example: account_fields
                                description:
                                  type: string
                                  example: validator fields for account
                                type:
                                  type: string
                                  example: string
                                maxLength:
                                  type: integer
                                  example: 11
                                minLength:
                                  type: integer
                                  example: 3
                                pattern:
                                  type: string
                                  example: ^[0-9]+$
                            corriente:
                              type: object
                              properties:
                                $id:
                                  type: string
                                  example: bank_corriente_bancolombia
                                title:
                                  type: string
                                  example: account_fields
                                description:
                                  type: string
                                  example: validator fields for account
                                type:
                                  type: string
                                  example: string
                                maxLength:
                                  type: integer
                                  example: 11
                                minLength:
                                  type: integer
                                  example: 3
                                pattern:
                                  type: string
                                  example: ^[0-9]+$
                    active:
                      type: boolean
                      example: true
                    createdAt:
                      type: string
                      example: '2020-10-01T00:00:00.000Z'
                    updatedAt:
                      type: string
                      example: '2020-10-01T00:00:00.000Z'
      parameters:
      - name: authorization
        in: query
        schema:
          type: string
      operationId: Bank.bankBases