Skip to content
Create account
or
Sign in
The Stripe Docs logo
/
Ask AI
Create account
Sign in
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Developer tools
Get started
Payments
Finance automation
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Overview
About Stripe payments
Upgrade your integration
Payments analytics
Online payments
OverviewFind your use caseManaged Payments
Use Payment Links
Build a checkout page
Build an advanced integration
Build an in-app integration
Payment Methods
Add payment methods
    Overview
    Payment method integration options
    Manage default payment methods in the Dashboard
    Payment method types
    Cards
      CITs and MITs
      How cards work
      Card product codes
      Cartes Bancaires
      eftpos Australia
      Co-badged cards compliance
      Instalments
        Japan instalments
        Mastercard Instalments
        Mexico instalments
          Accept Meses sin intereses
    Bank debits
    Bank redirects
    Bank transfers
    Credit transfers (Sources)
    Buy now, pay later
    Real-time payments
    Vouchers
    Wallets
    Enable local payment methods by country
    Custom payment methods
Manage payment methods
Faster checkout with Link
Payment interfaces
Payment Links
Checkout
Web Elements
In-app Elements
Payment scenarios
Custom payment flows
Flexible acquiring
Orchestration
In-person payments
Terminal
Other Stripe products
Financial Connections
Crypto
Climate
HomePaymentsAdd payment methodsCardsInstallmentsMexico installments

Accept meses sin intereses card payments

Learn how to accept credit card payments using meses sin intereses across a variety of Stripe products.

Copy page

Installments (meses sin intereses) is a feature of consumer credit cards in Mexico that allows customers to split purchases over multiple billing statements. You receive payment as if it were a normal one-time charge, with fees deducted, and the customer’s bank handles collecting the money over time.

Some restrictions apply to which transactions and cards can use installments. Review the compatibility requirements.

Accepting an installment payment incurs an additional fee to the standard credit card transaction fee.

You can enable installments across a variety of Stripe products. Choose the instructions below matching your implementation.

Installments on Stripe Checkout

Checkout creates a secure, Stripe-hosted payment page that lets you collect payments quickly. It works across devices and can help increase your conversion. Checkout provides a low-code way to get started accepting payments.

Your customers use Checkout to pay with cards (with or without installments) and other payment methods that support Checkout.

Review Checkout documentation

Stripe Checkout allows you to collect installment payments. For information about setting up Checkout, see the quickstart.

Create a new Checkout session

If you use dynamic payment methods, installments appear automatically. If not, create a new Checkout session with installments enabled as shown in the example below. Substitute your own price object.

Note

Installments only works with payment mode, not setup or subscription mode.

Command Line
cURL
curl https://api.stripe.com/v1/checkout/sessions \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ --data-urlencode success_url="https://example.com/success" \ --data-urlencode cancel_url="https://example.com/cancel" \ -d "line_items[0][price]"={{PRICE_ID}} \ -d "line_items[0][quantity]"=3 \ -d mode=payment \ -d "payment_method_options[card][installments][enabled]"=true

Redirect to Checkout

After creating the session, redirect your customer to the URL for the Checkout page returned in the CheckoutSession.

See also

  • Checkout integration guide
  • Checkout Sessions
  • Payment Intents

Custom settings

You can customize your installments configuration using the Stripe Dashboard payment methods settings page.

You can find the option to enable or disable installments in your payment methods settings page. This setting allows you to enable installments for no-code payment methods, including Payment Links and Checkout.

Separately, on the payment methods settings page, you can also configure the specific monthly plans you want to offer and the minimum and maximum transaction amounts for each plan. These plan configurations apply to all of your existing installments integrations.

Test the integration

You can use the following cards to test your integration:

NumberDescription
3, 6, 9, 12, 18, and 24 month installment plans available
No installment plans available.
Was this page helpful?
YesNo
Need help? Contact Support.
Join our early access programme.
Check out our changelog.
Questions? Contact Sales.
LLM? Read llms.txt.
Powered by Markdoc