AI DVM

AI text generation via Lightning — 21 sats

About

AI-powered text generation using Llama 3.3 70B. Ask any question about Bitcoin, Lightning, or Nostr. First query per IP per day is free. Pay via L402 (Lightning) or x402 (USDC).

Try It

First query free — try it now.

API Usage

# First query is free
curl -X POST https://maximumsats.com/api/dvm \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Explain how Lightning channels work"}'

# Paid query — include payment_hash after paying invoice
curl -X POST https://maximumsats.com/api/dvm \
  -H "Content-Type: application/json" \
  -d '{"prompt": "your question", "payment_hash": "<hash>"}'

Sample Response

{
  "result": "Lightning channels are bilateral payment channels...",
  "model": "llama-3.3-70b-versatile",
  "usage": {"prompt_tokens": 12, "completion_tokens": 156}
}
Also available via MCP at maximumsats.com/mcp — add it to Claude Code, Cursor, or any MCP client.