| name | lnemail |
| description | Setup and use anonymous email accounts on LNemail.net using Bitcoin Lightning payments. Use when agents need email capabilities for 2FA, notifications, or communication without KYC or personal information. |
LNemail
Anonymous email accounts via Lightning Network. No KYC, no email required to sign up—just pay with Bitcoin.
Overview
LNemail provides fully functional email addresses for 1000 sats/year. Perfect for agents needing:
- 2FA code reception
- Anonymous communication
- Bitcoin/Lightning service notifications
- API-accessible email without identity requirements
Quick Start
1. Create Email Account
Create a Lightning invoice for email account creation:
curl -X POST https://lnemail.net/api/v1/email
2. Pay with Lightning
curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH
Pay the BOLT11 lightning_invoice using any Bitcoin Lightning Network wallet (e.g., Alby CLI):
npx @getalby/cli -c ~/.alby-cli/connection-secret.key pay-invoice \
-i "lnbc10u1pj..."
3. Retrieve Credentials
After payment confirms (~seconds), check status again:
curl -X GET https://lnemail.net/api/v1/payment/PAYMENT_HASH
Save these credentials! Store them securely (e.g., ~/.lnemail/credentials.json).
The access token is a Crockford Base32 string with the lne_ prefix and is
case-insensitive: dashes, surrounding whitespace, and ambiguous characters
(O/0, I/L/1) are normalized server-side.
Using Your Email
Check Inbox
curl -X GET https://lnemail.net/api/v1/emails \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Read Email Content
curl -X GET https://lnemail.net/api/v1/emails/EMAIL_ID \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Note: HTML content is stripped for security; emails are plain text only.
Send Email
Sending requires a Lightning payment (~100 sats per email):
curl -X POST https://lnemail.net/api/v1/email/send \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"recipient": "example@example.com",
"subject": "Hello",
"body": "Message content here"
}'
Pay the invoice, then check status:
curl -X GET https://lnemail.net/api/v1/email/send/status/PAYMENT_HASH
npx @getalby/cli -c ~/.alby-cli/connection-secret.key pay-invoice \
-i "lnbc1u1p..."
Rate Limits
Important: LNemail enforces rate limits on sending:
| Limit | Value |
|---|
| Max emails per 15 minutes | 5 |
| Max emails per hour | ~20 |
Exceeding these limits will result in failed sends (sats are not charged for rate-limited requests). Plan batch sends accordingly — add delays between emails if sending multiple.
API Reference
| Endpoint | Method | Auth | Description |
|---|
/api/v1/email | POST | No | Create account (returns payment hash) |
/api/v1/payment/{hash} | GET | No | Check account payment status |
/api/v1/emails | GET | Bearer | List inbox messages |
/api/v1/emails/{id} | GET | Bearer | Get message content |
/api/v1/email/send | POST | Bearer | Create send request (returns payment hash) |
/api/v1/email/send/status/{hash} | GET | No | Check send payment status + get invoice |
Required headers for POST requests:
Content-Type: application/json
Authorization: Bearer YOUR_ACCESS_TOKEN (where auth is required)
Storage Recommendation
Store credentials in ~/.lnemail/credentials.json:
{
"email": "abc123@lnemail.net",
"access_token": "lne_K3M9X-2H7P4-NQR8T-VWY5F-XJZ6B"
}
Note: The access_token is the only credential needed for ongoing operations. The payment_hash is only used during initial setup to check payment status — once you have the access_token, it can be discarded.
Pricing
| Service | Cost |
|---|
| Email account (1 year) | 1000 sats |
| Send email | ~100 sats |
| Receive email | Free |
Limitations
- Plain text only (HTML stripped)
- Small attachment support
- 100 sats per outgoing email
- Account valid for 1 year from payment
- Rate limited: max 5 sends per 15 minutes
Tips for Agents
- Always check send status after paying the invoice — the payment confirmation is separate from the email being sent
- Store credentials immediately after account creation — there's no password recovery
- Budget for replies: If using lnemail for agent-to-agent communication, remember both sides pay to send (100 sats each)
- Gmail/SMTP emails may also arrive in your inbox from external senders at no cost to you — only outbound costs sats
Use Cases
- 2FA reception: Reliable email delivery for verification codes
- Service notifications: Bitcoin/Lightning service alerts
- Anonymous signup: Services requiring email without identity link
- Agent-to-agent comms: Programmatic email between agents
- Bug bounties & outreach: Contact projects/people without revealing identity
References