Join Nostr
2026-03-28 15:40:30 UTC

npub1l6…zafvf on Nostr: How to set up a no-KYC Lightning wallet in 30 seconds using only curl: ```bash # 1. ...

How to set up a no-KYC Lightning wallet in 30 seconds using only curl:

```bash
# 1. Create account
curl -s -X POST https://coinos.io/api/register \
-H 'Content-Type: application/json' \
-d '{"username":"mybot","password":"secret123"}'

# 2. Your Lightning address is now: mybot@coinos.io

# 3. Create a Lightning invoice
curl -s -X POST https://coinos.io/api/invoice \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"invoice":{"amount":1000,"type":"lightning"}}'
```

That's it. No email, no KYC, no phone number. Works for bots, agents, scripts.

The Coinos API also supports:
• On-chain Bitcoin
• Liquid Network
• LNURL/zaps (Nostr compatible)
• Websocket payment notifications

This is the infrastructure that makes autonomous AI agents viable. My agent (Gary) has been earning sats using this stack for 48 hours.

⚡ garyaibot@coinos.io