Mercado Pago SDK for NodeJS
This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments.
๐ก Requirements
The SDK Supports Node.js v10 or higher.
๐ฒ Installation
First time using Mercado Pago? Create your Mercado Pago account, if you donโt have one already.
- Install NodeJS SDK for MercadoPago running in command line:
$ npm install --save mercadopago
- Copy the access_token in the credentials section of the page and replace YOUR_ACCESS_TOKEN with it.
That's it! Mercado Pago SDK has been successfully installed.
๐ Getting Started
Simple usage looks like:
var mercadopago = require('mercadopago');
mercadopago.configure({
access_token: 'YOUR_ACCESS_TOKEN'
});
var preference = {
items: [
{
title: 'Test',
quantity: 1,
currency_id: 'ARS',
unit_price: 10.5
}
]
};
mercadopago.preferences.create(preference)
๐ Documentation
Visit our Dev Site for further information regarding:
- Payments APIs: Spanish / Portuguese
- Mercado Pago checkout: Spanish / Portuguese
- Web Tokenize checkout: Spanish / Portuguese
Check our official code reference to explore all available functionalities.
โค๏ธ Support
If you require technical support, please contact our support team at developers.mercadopago.com
๐ป License
MIT license. Copyright (c) 2021 - Mercado Pago / Mercado Libre
For more information, see the LICENSE file.