Install
openclaw skills install nowpayments-integrationIntegrates NowPayments API to enable secure multi-cryptocurrency payments, IPN handling, and order tracking in AI-operated stores.
openclaw skills install nowpayments-integrationSets up NowPayments cryptocurrency payment processing for AI-operated stores:
Tell your AI: "Set up NowPayments for my store."
Your AI will:
.env with NOWPAYMENTS_API_KEY and NOWPAYMENTS_IPN_SECRET/api/checkout endpoint with:
/api/payment-callback for IPN webhooksconst PRODUCTS = {
blueprint: { name: "Product Name", price: 29, desc: "Description" },
kit: { name: "Product Name", price: 97, desc: "Description" },
// Add more products as needed
}
curl -X POST http://localhost:3000/api/checkout \
-H "Content-Type: application/json" \
-d '{"productId": "blueprint"}'
Response includes:
payment_id — NowPayments IDpay_address — Crypto wallet addresspay_amount — Amount in cryptopay_currency — Currency (default: usdterc20)1.0 by TalonForge