# MD for: https://www.mercadopago.com.ar/developers/es/docs/resources/localization/considerations-argentina.md \# Special considerations for Argentina ## Resolution E 51/2017 for payments in installments Due to \[Resolution E 51/2017\](https://www.boletinoficial.gob.ar/#!DetalleNormaBusquedaRapida/158269/20170125/resolucion%2051) of the Argentine Secretary of Commerce, on transparent prices, you are required to comply with certain requirements when building the form for purchases with credit card on your website: 1\. When showing the price financed in installments, you must indicate the actual price, the total financed price, the number and amount of each installment, the annual effective interest rate applied and the total financial cost. 2\. In case you sell products and/or services based on the modality financed in installments, you are not allowed to include the phrase “without interest rate” (or any other similar) when the cost of financing is transferred to the retail price. 3\. The information about the total financial cost (CFT) of the transaction must be placed near the other variables reported in the previous point, highlighted in bold using the same font and size at least FIVE (5) times bigger – while preserving all proportions of stroke thickness, height and width – in relation to that used to report the annual effective interest rate (TEA) applied. Multiplying the width of the sides x 2.25 is sufficient. Example: !\[cft-tea\](https://www.mercadopago.com.ar/images/resources/tea-cft.png) ### Get the TEA and CFT The TEA and the CFT can be obtained through our API using the \`installments\` feature. To make the request, you need to submit the \`payment\_method\_id\` and the \`bin\` (first 6 digits of the card). Example: \`\`\` curl -X GET \\ -H "accept: application/json" \\ -H 'Authorization: Bearer TEST-5252485006568871-060216-a48700bfc7c55fd627e1a107f7ece57e\_\_LA\_LB\_\_-110261734' \\ "https://api.mercadopago.com/v1/payment\_methods/installments?\[payment\_method\_id=:id\]&\[bin=:bin\]&\[amount=:amount\]&\[issuer.id=:issuer\_id\]" \`\`\` The result will be a list of installments that will contain this information within the \`labels\` attribute: \`\`\`json { ..., "payer\_costs": \[ { "installments": 1, "installment\_rate": 0, "discount\_rate": 0, "labels": \[ "CFT\_0,0%|TEA\_0,0%" \], "min\_allowed\_amount": 0, "max\_allowed\_amount": 250000, "recommended\_message": "1 cuota de $ 1.000,00 ($ 1.000,00)", "installment\_amount": 1000, "total\_amount": 1000 }, { "installments": 3, "installment\_rate": 0, "discount\_rate": 0, "labels": \[ "CFT\_70,21%|TEA\_89,43%" \], "min\_allowed\_amount": 2, "max\_allowed\_amount": 250000, "recommended\_message": "3 cuotas de $ 369,90 ($ 1.109,70)", "installment\_amount": 369.90, "total\_amount": 1109.70 } \] } \`\`\` It is worth noting that in case of 1 installment or installments related to \[promotions\](https://www.mercadopago.com.ar/promociones) with no interest, they will have the values of TEA and CFT equal to 0\. Although the value is 0, in scenarios where the customer chooses more than one installment, you must show it in the purchase form anyway. ### Code sample Find below an example to assist you with this implementation: \`\`\`html * Cuotas Total al contado: $100Total financiado: $100TEA: 0%CFT: 0% \`\`\` Your HTML should already contain the following script: \`\`\` \`\`\` We will use the Mercado Pago library to check the \`installments\` feature. \`\`\`javascript \`\`\`