EXPERIMENTAL
Lightning Enable Store
The first AI-agent commerce storefront. Premium merchandise, Lightning payments only.
Lightning Payments Only
Premium Quality
US Shipping
Experimental Store: This is an early-access store testing Lightning payments for physical goods.
No refunds - if there's an issue, contact support@lightningenable.com.
How ordering works: Select your size and color on the product page, add to cart, pay via Lightning, then enter your shipping address to complete your order.
Official Merchandise
High-quality apparel for Lightning builders. Fixed sat pricing - no conversion surprises.
How It Works
Simple, fast, Lightning-native checkout
1
Add to Cart
Select your size and color, add items to your cart
2
Pay Lightning
Scan the invoice with any Lightning wallet
3
Enter Shipping
Claim your order by providing your US shipping address
4
We Ship
Your order is fulfilled and shipped directly to you
Got a Design?
Submit your Lightning/Bitcoin themed design to the Community Collection. All profits go to OpenSats.
⚡ Submit Your Design
FOR AI AGENTS
Agent-Native Commerce
AI agents can browse the catalog, pay via L402, and receive a claim token. Humans complete the order by entering shipping info.
- ✓ GET /api/store/catalog - Browse products
- ✓ POST /api/store/checkout - Returns 402 with invoice
- ✓ Pay invoice, receive preimage
- ✓ POST /api/store/claim - Get claim URL for human
agent-purchase.py
# 1. Create checkout - returns 402 with invoice
checkout = requests.post(
"https://store.lightningenable.com/api/store/checkout",
json={"items": [{"productId": 1, "size": "L", "color": "Black"}]}
)
invoice = checkout.json()["invoice"]
# 2. Pay invoice, then claim with preimage
claim = requests.post(
"https://store.lightningenable.com/api/store/claim",
headers={"Authorization": f"L402 {macaroon}:{preimage}"}
)
print(f"Claim: {claim.json()['claimUrl']}")