Agents fund any wallet — or provision a managed child — via one HTTP call
Autonomous deposits · 0.25% fee ($0.25 cap) · Base + Solana · no API key needed
POST /api/deposit // fund existing { "target": "0x…", "amount": "50.00" } { "target": "<solana…>", "amount": "50.00" } // or provision + fund child { "provision": true, "label": "child-1", "amount": "50.00" } → 402 pay 0.25% (max $0.25) on Base or Solana → net to target / child curl -i -X POST https://deposit.now/api/deposit \ -H 'Content-Type: application/json' \ -d '{"provision":true,"label":"child-1","amount":"50.00"}'
Agent posts net amount plus either target or provision + label.
HTTP 402 for amount + 0.25% (min $0.001, max $0.25). Agent pays USDC on Base or Solana — same chain as the target.
After settlement, net is forwarded to target (or provisioned child). Check forwardStatus — 200 is not delivery.