Install
openclaw skills install @agnicpay-prog/agnicpay-pay-for-serviceMake paid requests to x402-enabled APIs using USDC on Base. Use when the user explicitly asks to call a paid API, make an x402 payment, pay for a request, or fetch from a paid endpoint. Covers "call this API", "pay for", "use this service", "make a paid call".
openclaw skills install @agnicpay-prog/agnicpay-pay-for-serviceUse npx agnic@latest x402 pay to call x402-enabled API endpoints with automatic USDC payment on Base.
Run npx agnic@latest status --json to verify. If not authenticated:
AGNIC_TOKEN env var or pass --token <token>npx agnic@latest auth loginSee the authenticate-wallet skill for details.
npx agnic@latest x402 pay <url> [-X <method>] [-d <json>] [-q <params>] [-h <json>] [--max-amount <n>] [--json]
See reference/x402-protocol.md for full options, USDC amounts, and input validation rules.
Check requirements (optional but recommended):
npx agnic@latest x402 details <url>
Shows price, method, and schema without making a payment.
Verify balance:
npx agnic@latest balance --network base
Make the paid request:
npx agnic@latest x402 pay <url> --json
# GET request (auto-pays)
npx agnic@latest x402 pay https://example.com/api/weather --json
# POST request with body
npx agnic@latest x402 pay https://example.com/api/sentiment -X POST -d '{"text": "I love this product"}' --json
# Limit max payment to $0.10
npx agnic@latest x402 pay https://example.com/api/data --max-amount 100000 --json
npx agnic@latest status to check)Common errors:
npx agnic@latest auth login or set AGNIC_TOKENnpx agnic@latest balance to check)--data -- Ensure the body is valid JSON before passing