Payment Button

For the quickest integration of SMARTy Pay payments on your website, we recommend using our open-source Client SDK. It offers a Payment Button option that can be directly placed on the merchant's website.

React component

React component for client-side applications

Usage example

import { SmartyPayButton } from 'smartypay-client-react';

<SmartyPayButton
  apiKey="YOUR_API_KEY"
  amount="1.99"
  token="bUSDT"
  lang="en"
  theme="dark"
/>

Available parameters:

NameTypeRequiredDetails
apiKeystringtrueKey from API Key configuration
tokenstringtruePayment token code from Supported Tokens
amountstringtrueThe amount of the payment
langen | es | fr | it | kofalseInterface language
themelight | darkfalseLight or dark widget theme

More information:

Animated button (no React)

<div id="smartypay"></div>
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<script>
new SmartyPayButton({
  target: 'smartypay',
  apiKey: 'YOUR_API_KEY',
  amount: '1.99',
  token: 'bUSDT',
  lang: 'en',
  theme: 'dark',
})
</script>

Available parameters:

NameTypeRequiredDetails
targetstringtrueElement id to insert the widget
apiKeystringtrueKey from API Key configuration
tokenstringtruePayment token code from Supported Tokens
amountstringtrueThe amount of the payment
langen | es | fr | it | kofalseInterface language
themelight | darkfalseLight or dark widget theme

More information:

Static HTML Form

Use code in your page:

<form action="https://api.smartypay.io/checkout" method="POST" target="_blank">
  <input type="hidden" name="api-key" value="YOUR_API_KEY">
  <input type="hidden" name="token" value="bUSDT">
  <input type="hidden" name="amount" value="1.5">
  <input type="hidden" name="lang" value="en">
  <input type="image"
        src="https://checkout.smartypay.io/checkout-button-light.svg"
        name="submit"
        alt="SmartyPay">
</form>

Available parameters:

NameTypeRequiredDetails
api-keystringtrueKey from API Key configuration
tokenstringtruePayment token code from Supported Tokens
amountstringtrueThe amount of the payment
langen | es | fr | it | kofalseInterface language
imageurl to imagefalseThe image of the payment button.

More information: