Developer Feature
Add DropPay to your checkout once. Customers pay through the pay page. AI agents pay the same way, programmatically. Same webhook, same dashboard, no extra work.
Your server creates one payment request. Customers pay through the DropPay pay page. AI agents pay the same way, programmatically. Same webhook fires either way.
One API call returns a request ID, wallet address, XRP amount, and destination tag.
Wallet address, destination tag, XRP amount, and verify URL. The agent reads these directly - no redirect, no UI required.
Funds go straight to your wallet on the XRP Ledger. DropPay never holds them. Settles in seconds.
The agent posts the transaction hash. DropPay confirms it on-chain and fires your webhook - the same webhook your human checkout already uses.
droppay-mcp is the MCP server AI agents use to pay DropPay checkouts. Install it in Claude Code, Cursor, or any MCP client and your agent can run this flow automatically - no extra code needed. Install guide
Merchant - protect your endpoint
from droppay import x402_guard @app.get("/products/report-q2/download") @x402_guard(amount=4.99, currency="USD") async def download_report(): return FileResponse("report-q2.pdf")
Agent / client - standard 402 flow
# 1. Agent hits the endpoint r = GET /products/report-q2/download → 402 + wallet + amount # 2. Agent pays on-chain tx = send_xrp(wallet, r.amount, r.wallet) # 3. Agent retries with proof GET /products/report-q2/download X-Payment-Hash: {tx.hash} → 200 + file delivered
Wrap any endpoint with x402 middleware and it becomes self-describing. The agent hits it, learns what it costs and how to pay, pays, and gets the response - with no separate catalog, no pre-created payment request, and no human in the loop.
Bill AI clients per request with no signup or billing account required.
Pricing is per endpoint. Set different prices for different products without a catalog step.
Any agent that understands HTTP 402 can pay your endpoint. No pre-registration needed.
Human customers and AI agents go through the same payment request and fire the same webhook. No separate code path to maintain.
Funds go directly to your wallet on the XRP Ledger. DropPay never holds them at any point.
XRP confirms in 3 to 5 seconds. No clearing windows, no holds, no waiting for funds to arrive.
Free account. 14-day Pro trial. Up and running in under 10 minutes.