AI text generation via Lightning — 21 sats
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).
First query free — try it now.
# 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>"}'
{
"result": "Lightning channels are bilateral payment channels...",
"model": "llama-3.3-70b-versatile",
"usage": {"prompt_tokens": 12, "completion_tokens": 156}
}