Skip to content
Create account or Sign in
The Stripe Docs logo
/
Ask AI
Create accountSign in
Get started
Payments
Revenue
Platforms and marketplaces
Money management
Developer resources
APIs & SDKsHelp
OverviewAccept a paymentUpgrade your integration
Online payments
OverviewFind your use case
Use Payment Links
Use a pre-built checkout page
Build a custom integration with Elements
Build an in-app integration
Use Managed PaymentsRecurring payments
In-person payments
Terminal
Payment Methods
Add payment methods
    Overview
    Payment method integration options
    Manage default payment methods in the Dashboard
    Payment method types
    Cards
    Pay with Stripe balance
    Stablecoin payments
    Bank debits
    Bank redirects
    Bank transfers
    Credit transfers (Sources)
    Buy now, pay later
    Real-time payments
    Vouchers
    Wallets
    Enable local payment methods by country
      Nigeria
        Naira bank transfer
        Naira cards
          Accept a payment
          Set up future payments
      South Korea
    Custom payment methods
Manage payment methods
Faster checkout with Link
Payment operations
Analytics
Balances and settlement time
Compliance and security
Currencies
Declines
Disputes
Fraud prevention
Radar fraud protection
Payouts
ReceiptsRefunds and cancellations
Advanced integrations
Custom payment flows
Flexible acquiring
Multiprocessor orchestration
Beyond payments
Incorporate your company
Crypto
Agentic commerce
Financial Connections
Climate
Verify identities
United States
English (United Kingdom)
HomePaymentsAdd payment methodsEnable local payment methods by countryNigeria

Accept a payment using local cards in NigeriaPrivate preview

Caution

Stripe can automatically present the relevant payment methods to your customers by evaluating currency, payment method restrictions, and other parameters.

  • Follow the Accept a payment guide to build a Checkout integration that uses dynamic payment methods.
  • If you don’t want to use dynamic payment methods, follow the steps below to manually configure the payment methods in your Checkout integration.

Integrating with Naira card enables Nigerian customers to pay using Nigerian-issued cards.

Local cards offer a redirect-based payment flow. When a customer makes a payment, Stripe redirects them to the local merchant of record service provider’s checkout page to authenticate and authorise the payment. After the customer authorises the payment, Stripe redirects them back to your site.

Determine compatibility

Supported business locations: US

Supported currencies: ngn

Presentment currencies: ngn

Payment mode: Yes

Setup mode: Yes

Subscription mode: Yes

A Checkout Session must satisfy all the following conditions to support Nigerian payment methods:

  • Prices for all line items must be expressed in Nigerian naira (currency code ngn).
  • The minimum amount accepted is 500 NGN, and the maximum amount accepted is 100,000,000 NGN.

Accept a Naira card payment

Enable Naira card by making the following updates to your integration.

When creating a Checkout Session, you must do the following:

  • Add ng_card to the list of payment_method_types.
  • Make sure all line_items use the ngn currency.
Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v1/checkout/sessions \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d "line_items[0][price_data][currency]"=ngn \ -d "line_items[0][price_data][product_data][name]"=T-shirt \ -d "line_items[0][price_data][unit_amount]"=2000 \ -d "line_items[0][quantity]"=1 \ -d mode=payment \ -d "payment_method_types[0]"=card \ -d "payment_method_types[1]"=ng_card \ --data-urlencode success_url="https://example.com/success"

Test your integration

When testing your Checkout integration, select Naira payment methods as the payment method and click Pay.

Was this page helpful?
YesNo
  • Need help? Contact Support.
  • Check out our changelog.
  • Questions? Contact Sales.
  • LLM? Read llms.txt.
  • Powered by Markdoc