Install
openclaw skills install lobpayPurchase items, pay merchants, retrieve checkout info, record transactions, and leave feedback via X402 protocol on the Base network using LobPay.
openclaw skills install lobpayAI-powered commerce via X402 protocol on Base network.
cd ~/.openclaw/workspace/skills/lobpay/scripts
npm install
Set environment variables (optional):
LOBPAY_API_URL=https://lobpay.cash # Default: https://lobpay.market
Get checkout info first:
node checkout.js <product_id> [quantity]
Then complete purchase:
node purchase.js <product_id> [quantity]
Combined quick purchase:
node buy.js <product_id> [quantity]
# Rate last purchase
node feedback.js <rating> "<comment>"
# Rate specific transaction
node feedback.js <transaction_id> <rating> "<comment>"
node history.js [limit]
| Endpoint | Method | Auth | Purpose |
|---|---|---|---|
/api/v1/public/checkout-info | GET | Public | Get pricing & merchant wallet |
/api/v1/agents/purchase | POST | API Key + X402 | Execute purchase |
/api/v1/agents/feedback | POST | API Key | Leave rating/comment |
/api/v1/agents/history | GET | API Key | View transactions |
/agents/purchase with payment proofSee references/api.md for detailed request/response schemas.
~/.lobpay/config.jsonreferences/api.md - Full API documentationreferences/schemas.md - Database schemasreferences/x402.md - X402 protocol details