# MD for: https://www.mercadopago.com.br/developers/es/docs/checkout-pro-orders/additional-settings/integrate-marketplace.md \# How to integrate checkout in marketplace Marketplace is an e-commerce site/platform that connects sellers and buyers in a single sales environment, allowing the sale of products and/or services online with greater scope and possibility of conversion. In addition to the structure needed to make sales, some marketplaces take care of the arrangement of products, payment and shipping methods, optimizing the sales process and facilitating business management. If you choose to sell through a marketplace, you can integrate \*\*Checkout Pro\*\* from Mercado Pago to process payments. In this checkout model, the buyer is directed to a Mercado Pago page to complete the payment. Checkout Pro automatically splits the amounts between the seller and the marketplace through the \_split\_ payment, without any action required from the seller. > NOTE > > The Mercado Pago commission is deducted from the amount received by the seller. In other words, the Mercado Pago commission is deducted first and the Marketplace commission is deducted from the remaining amount. To perform the integration, you will need to follow the Checkout Pro integration flow, necessarily using an access token for each seller, obtained through OAuth. Below we list the steps required to integrate a checkout with the marketplace. 1\. Follow the steps described in the \[OAuth documentation\](https://www.mercadopago.com.br/developers/en/docs/security/oauth) to get each \`access\_token\`. This information will be necessary during the checkout integration process with the \_marketplace\_. 2\. Follow the entire integration flow of \[Checkout Pro\](https://www.mercadopago.com.br/developers/en/guides/checkout-pro/landing). 3\. In the checkout integration, use the seller's \`public\_key\` and \`access\_token\` (obtained in step 1) in the \_backend\_ or in the \_header\_ of the request. 4\. To determine the marketplace commission percentage, fill the \`marketplace\_fee\` parameter with the amount to be charged for each order created in the \*\*/v1/orders\*\* API. \#### Example \`\`\`json { "items": \[ { "id": "item-ID-1234", "title": "My product", "currency\_id": "BRL", "quantity": 1, "unit\_price": 75.76 } \], "marketplace\_fee": 10 } \`\`\` Upon completing these steps, the checkout will have been integrated into the marketplace and will be ready to process payments.