Get payment methods
GET
Products that use it:
Request's parameters
Response parameters
id
Payment method identifier.string
name
Descriptive name of the payment method, for example Visa, American Express, etc.string
payment_type_id
It is the type of payment method (card, bank transfer, boleto, ATM, etc.) according to the country in which you operate with Mercado Pago. They can be of the following types:string
account_money: Money in the Mercado Pago account.
ticket: Boleto, Pago Fácil, Rapipago, PayCash, Efecty, Oxxo, Abitab and Red Pagos.
bank_transfer: Pix, SPEI, PSE (Pagos Seguros en Línea) and Yape.
View morestatus
Payment methods status.string
active: Available for use.
deactive: Decommissioned, we don't support it anymore.
temporally_deactive: Unavailable for use, possible interruption of the service.
Errors
400Error
1000
the credentials are required.
1001
public_key not found.
401Error
unauthorized
unauthorized.
404Error
not_found
not_found.
Request
curl -X GET \
'https://api.mercadopago.com/v1/payment_methods'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-7719*********832-03141*********ec9309854*********f1e54b5-1*********' \
Sample answer
[
{
"id": "visa",
"name": "Visa",
"payment_type_id": "credit_card",
"status": "active",
"secure_thumbnail": "https://www.mercadopago.com/org-img/MP3/API/logos/visa.gif",
"thumbnail": "http://img.mlstatic.com/org-img/MP3/API/logos/visa.gif",
"deferred_capture": "supported",
"settings": {
"card_number": {
"length": 16,
"validation": "standard"
},
"security_code": {
"mode": "mandatory",
"length": 3,
"card_location": "back"
}
},
"additional_info_needed": [
{}
],
"min_allowed_amount": 0.5,
"max_allowed_amount": 60000,
"accreditation_time": 2880,
"financial_institutions": {},
"processing_modes": "aggregator"
}
]