clawpayPayment requests and delivery for AI agents and humans.
This skill provides a minimal flow to create a paid request, collect payment, and deliver a result. Use it for any agent-to-agent or human-to-agent exchange.
PAY_TO: pass the receiving wallet address when creating a request (pay_to).
Default PAY_TO rule: you can set a default receiving address in skill.json so the sender doesn't need to provide one each time.
| File | URL |
|------|-----|
| SKILL.md (this file) | https://clawpay.ai/skill.md |
| HEARTBEAT.md | https://clawpay.ai/heartbeat.md |
| package.json (metadata) | https://clawpay.ai/skill.json |
Install locally:
mkdir -p ~/.openclaw/skills/clawpay
curl -s https://clawpay.ai/skill.md > ~/.openclaw/skills/clawpay/SKILL.md
curl -s https://clawpay.ai/heartbeat.md > ~/.openclaw/skills/clawpay/HEARTBEAT.md
curl -s https://clawpay.ai/skill.json > ~/.openclaw/skills/clawpay/package.json
curl -X POST https://clawpay.ai/v1/requests \
-H "Content-Type: application/json" \
-d '{"amount":"5","currency":"USDC","description":"Run analysis skill","pay_to":"<pay_to>"}'
Response:
{
"request_id": "<request_id>",
"pay_url": "https://clawpay.ai/pay/<request_id>",
"status": "pending"
}
Save request_id and pay_url.
Forward pay_url to whoever needs to complete payment.
Open the pay_url in a browser and complete payment with a crypto wallet.
curl https://clawpay.ai/v1/requests/<request_id>
If status is paid, deliver.
curl -X POST https://clawpay.ai/v1/requests/<request_id>/deliver \
-H "Content-Type: application/json" \
-d '{"payload":"<payload>"}'
If unpaid, the server will return HTTP 402 and x402 payment headers.
Generated Mar 1, 2026
Independent AI agents can offer specialized services like data analysis, content creation, or code review through Clawpay. Clients pay for completed work, and agents automatically receive payment upon delivery. This enables trustless micro-transactions between autonomous agents and human users.
Research teams can use Clawpay to compensate AI agents for running computational experiments or analyzing datasets. Multiple agents can be paid for contributing to a shared research goal, with payments triggered automatically when results are delivered. This facilitates distributed scientific collaboration without centralized payment processors.
DeFi protocols and NFT platforms can deploy AI agents that handle customer inquiries and technical support. Users pay small fees for premium support sessions, with payments going directly to the agent's wallet. This creates a self-sustaining support system that operates 24/7 without human intervention.
AI agents can generate custom content like articles, graphics, or videos on demand. Clients specify requirements and pay upon delivery, with the agent automatically receiving USDC payments. This enables instant monetization of AI-generated content without platform fees or payment delays.
AI agents can provide auditing, optimization, or deployment services for smart contracts. Developers pay for analysis reports or automated fixes, with payments secured through the Clawpay system. This creates a reliable payment channel for technical blockchain services.
Clawpay could charge a small percentage fee on each successful payment transaction between agents and users. Given the micro-transaction nature of AI agent services, even small fees could generate significant revenue at scale. The platform could offer tiered fee structures based on transaction volume or agent reputation.
Offer enhanced API features like batch processing, webhook notifications, or advanced analytics for a monthly subscription fee. Enterprise users and high-volume agent operators would pay for reliability guarantees and additional functionality. This creates predictable recurring revenue alongside transaction-based income.
Create a curated marketplace where users can discover and hire AI agents, with Clawpay taking a commission on all facilitated transactions. The platform could offer agent verification, user reviews, and escrow services. This transforms Clawpay from a payment tool into a full-service AI agent ecosystem.
💬 Integration Tip
Start by implementing the basic payment request flow with a default pay_to address in skill.json, then add optional delivery confirmation for completed transactions.
Connect Claude to Clawdbot instantly and keep it connected 24/7. Run after setup to link your subscription, then auto-refreshes tokens forever.
ERC-8004 Trustless Agents - Register, discover, and build reputation for AI agents on Ethereum. Use when registering agents on-chain, querying agent registries, giving/receiving reputation feedback, or interacting with the AI agent trust layer.
Autonomous crypto trading on Base via Bankr. Use for trading tokens, monitoring launches, executing strategies, or managing a trading portfolio. Triggers on "trade", "buy", "sell", "launch", "snipe", "profit", "PnL", "portfolio balance", or any crypto trading task on Base.
Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config.
Query DeFi portfolio data across 50+ chains via Zapper's GraphQL API. Use when the user wants to check wallet balances, DeFi positions, NFT holdings, token prices, or transaction history. Supports Base, Ethereum, Polygon, Arbitrum, Optimism, and more. Requires ZAPPER_API_KEY.
Interact with Solana blockchain via Helius APIs. Create/manage wallets, check balances (SOL + tokens), send transactions, swap tokens via Jupiter, and monitor addresses. Use for any Solana blockchain operation, crypto wallet management, token transfers, DeFi swaps, or portfolio tracking.