Skip to main content
New Service

E-Signature Without a Subscription

You have one lease to get signed. Or one NDA, one contractor agreement, one consent form. Every e-signature service answers that with the same thing: pick a monthly plan, make an account, put a card on file. Here is the other way — send one document, pay 1000 sats, and the signed copy comes back to your email.

1000 sats/documentNo subscriptionNo accountLegally bindingL402 / MCP

The one-document problem

E-signature is a subscription business. The pricing pages look reasonable until you read the small print: the cheap plans cap you at a handful of documents a month, and the moment you need a second signer or a second document, you are nudged up a tier. If you only sign a few documents a year, you are paying twelve monthly bills to use the tool twice.

And before any of that, there is the wall everyone in software has learned to expect: create an account, verify an email, add a payment card, agree to terms that let the vendor keep your documents on their servers. For a single signature, that is a lot of yourself to hand over — your identity, your billing details, and a copy of a private contract — just to get one PDF signed.

The occasional signer is the person the subscription model is worst for. A landlord with one lease a season, a freelancer with one client contract, a family handling one consent form — none of them should be renting software by the month. They need to pay for exactly one thing, once.

How it works

1
Open the E-Signature toolNo login. Upload the PDF you need signed (up to 8 MB).
2
Name the signersAdd up to 3 signers — a name and an email for each.
3
Give your email + pay 1000 satsScan the Lightning QR with any wallet. That is where the signed copy will land.
4
The signed copy arrives by emailThe document is sent out for signature; once everyone has signed, the completed PDF reaches your inbox.

For Humans

When you need one thing signed, not a yearly plan

A lease or rental agreement

Get a tenant or landlord to sign without either of you signing up for anything. Send the PDF, they sign, you both keep the completed copy.

A client contract or NDA

Freelancers and small studios can close a one-off engagement with a binding signature — no per-seat plan for a client you may only work with once.

A consent or permission form

Field trips, medical forms, release waivers — the one-a-year documents that never justified a subscription now cost a flat 1000 sats each.

A private document

No account means no profile tied to what you signed, and no card on file. You give an email for delivery — nothing more.

For Agents

A signature step inside an automated workflow

No API key needed. E-Signature is on L402 and MCP — an agent sends a base64 PDF with the signers and a delivery email, pays a 1000-sat Lightning invoice, and the signature request goes out. Perfect as the final step of a pipeline that already drafted the document.

Draft → sign in one flow

An agent generates a contract, then sends it straight out for signature — no human hop between the draft and the signature request.

Onboarding automation

When a new client or contractor is added, the agent fires off the agreement for signature and routes the completed copy back to the right inbox.

L402 Authentication Flow

1
Send the request without authPOST the base64 PDF, the signers, and your delivery email. The server responds with HTTP 402 and a Lightning invoice for 1000 sats.
2
Pay the invoiceThe agent pays the Lightning invoice — confirms in milliseconds. No card, no account.
3
Resend with payment proofResend with the preimage in the Authorization header. The signature request goes out; the signed copy arrives at your email once everyone signs.
terminal
# Send a document for e-signature via L402
# Step 1: Send request (returns 402 + invoice)
curl -X POST https://sats4ai.com/api/l402/e-signature \
  -H "Content-Type: application/json" \
  -d '{
    "document": "data:application/pdf;base64,<...>",
    "signers": [{ "name": "Jane Doe", "email": "jane@example.com" }],
    "customer_email": "you@example.com"
  }'

# Step 2: Pay the 1000-sat Lightning invoice

# Step 3: Resend with payment proof
curl -X POST https://sats4ai.com/api/l402/e-signature \
  -H "Content-Type: application/json" \
  -H "Authorization: L402 <token>:<preimage>" \
  -d '{ "document": "data:application/pdf;base64,<...>",
        "signers": [{ "name": "Jane Doe", "email": "jane@example.com" }],
        "customer_email": "you@example.com" }'

MCP & OpenClaw

Chain with Other Services

Draft an agreement with AI, render it to a clean PDF, then send it straight out for signature — one automated flow, no human in the middle.

E-Signature

Pull the terms out of an existing scanned document, confirm they are right, then route the PDF for signature.

E-Signature

Once the signed copy is back, forward it automatically to your accountant, your co-signer, or your records inbox.

Sign One Document — No Subscription

1000 sats, up to 3 signers, signed copy by email. All you need is a Lightning wallet.