Request Checkout

Request Checkout is a pre-built component that abstracts all the complexities of blockchain transactions using Request Network, making it simple for businesses to handle crypto-to-crypto payments without deep technical knowledge. It is open-source and free to integrate, designed for:

Playground

The playground on this page lets you experiment with the widget firsthand. You can enter different values for the widget's properties, such as seller information, product details, and supported currencies. As you adjust these settings, you'll see how the widget responds in real time. This interactive experience helps you understand how the widget works and how it might look and function on your own website.

Try different configurations to see how versatile and user-friendly the Request Checkout payment widget can be for your customers!

Integration Code:

npm install @requestnetwork/payment-widget
import PaymentWidget from "@requestnetwork/payment-widget/react";

const YourComponent = () => {
  return (
    <PaymentWidget
      amountInUSD={0}
      sellerInfo={{}}
    />
  );
};