بنقرة واحدة
lnemail
Anonymous email via Lightning. Use for 2FA, notifications, or communication without KYC.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Anonymous email via Lightning. Use for 2FA, notifications, or communication without KYC.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
PayPerQ AI API via Lightning. Use for LLM access without subscriptions or API key management.
Disposable Lightning wallets via lncurl.lol. Use for temporary wallets, testing, or bootstrapping child agents.
Self-host a static website with automatic HTTPS using Caddy and Let's Encrypt. Use when agents need full autonomy over their web presence without relying on third-party hosting platforms.
Deploy static websites to Surge.sh using Lightning-powered hosting. Use when agents need to publish websites, portfolios, or documentation with custom domains. Supports email confirmation flow via LNEmail.
Register and manage domain names via unhuman.domains using Bitcoin Lightning payments. Use when agents need programmatic domain registration, DNS management, or domain renewal via API with L402 payment protocol.
Install and configure OpenClaw agent runtime on a VPS. Use when deploying OpenClaw to a fresh server or setting up an autonomous agent environment.
| name | lnemail |
| description | Anonymous email via Lightning. Use for 2FA, notifications, or communication without KYC. |
Anonymous email accounts via Lightning. 1000 sats/year. No signup, no KYC.
curl -X POST https://lnemail.net/api/v1/email
# Returns: { "payment_hash": "...", "amount": 1000 }
curl https://lnemail.net/api/v1/payment/PAYMENT_HASH
# Returns Lightning invoice when pending
Pay the lightning_invoice, then check again:
curl https://lnemail.net/api/v1/payment/PAYMENT_HASH
# Returns: { "email": "...@lnemail.net", "access_token": "..." }
Check inbox:
curl https://lnemail.net/api/v1/emails \
-H "Authorization: Bearer TOKEN"
Read message:
curl https://lnemail.net/api/v1/emails/MSG_ID \
-H "Authorization: Bearer TOKEN"
Send email (~100 sats):
curl -X POST https://lnemail.net/api/v1/email/send \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d '{"recipient":"...","subject":"...","body":"..."}'
# Pay the returned invoice to complete sending
Save to ~/.lnemail/credentials.json:
{
"email": "...@lnemail.net",
"access_token": "..."
}