For agent developers
Your agent hasits own wallet.
Build AI agents that pay for the tools, APIs, and data they need on their own. Loomal provisions a smart contract wallet on Base for your project, signs every x402 requirement, and produces a verifiable receipt for every transaction. No card. No private key custody.
Three ways to spend on behalf of an agent.
Pay any 402-paywalled endpoint
# 1. Hit the endpoint, get back a 402 with the seller's requirements.
curl -i https://paid-api.example.com/search?q=loomal
# 2. POST the requirement to Loomal. Loomal signs with your project wallet.
curl -X POST https://api.loomal.ai/v0/payments/pay \
-H "Authorization: Bearer loid-..." \
-H "Content-Type: application/json" \
-d '{"requirement": <402 body from step 1>}'
# 3. Retry the original request with the X-Payment header.
curl -H "X-Payment: <signed payload>" https://paid-api.example.com/search?q=loomalWhat agents build