Skip to main content

Satoshi reference table

1 sat = 1/100,000,000 of a Bitcoin. At common price points: Lightning payments have no minimum fee floor. A 1-sat payment costs the sender ~0.0005impossiblewithStripe(0.0005 — impossible with Stripe (0.30 minimum).

Pricing by use case

These are starting points. The right price is what your callers will pay without friction.

Start low, move up

Because switching fees is one line of code, err on the side of low prices at launch:
Payment data in the VS Code dashboard shows you call volume and revenue — use it to calibrate.

Managed vs Soberano at scale

The 0.3% managed fee only matters at volume: Rule of thumb: if you’re processing less than 1M sats/month (~800at800 at 80k/BTC), the 0.3% fee is noise. Stay on Managed and focus on building. Switch to Soberano when volume makes it worthwhile — it’s one line of code.

Pricing for AI agents

Agents are price-insensitive in a different way than humans — they don’t feel the pain of a payment, but they do have budget limits set by their operators. Practical guidance:
  • Keep prices below 100 sats per call for general agent use — this fits within typical per-session budgets
  • For high-value agent tools (code execution, document analysis), 100–1,000 sats is acceptable
  • Use priceSats dynamically if your cost varies by input size:

Tiered access with multiple endpoints

Price different tiers by routing to different endpoints:
Each endpoint generates its own invoice. Callers pay per call — no subscription management.

Testing your pricing

Before going live, test the full payment flow with a real wallet:
  1. Set priceSats: 1 (1 sat ≈ $0.0008 — cheap enough to test freely)
  2. Use Wallet of Satoshi or Blink on your phone
  3. Call your endpoint, scan the invoice QR, verify 200 OK
  4. Check the VS Code dashboard or your Lightning wallet to confirm receipt
Once confirmed, set your real price and deploy.