Aurora WebPOS
Bitcoin Lightning Payments Made Easy
A fully customizable point-of-sale solution for Bitcoin Lightning payments, powered by the Aurora API. Designed for merchants, service providers, and digital nomads to enable fast, secure, and low-cost payments without extensive development effort.

Designed for Real-World Use
Aurora WebPOS includes everything you need to start accepting Bitcoin payments in your business today.
Intuitive UI
Designed for fast-paced environments with minimal training required
Multi-Currency
Set prices in your local currency with automatic conversion to Bitcoin
Mobile-First
Works perfectly on tablets and smartphones for on-the-go sales
Real-Time Updates
Instant payment confirmations with webhook integration
Business Benefits
No Chargebacks
Bitcoin transactions are irreversible, eliminating fraud and dispute costs
Global Customer Base
Tap into the growing Bitcoin economy and attract tech-savvy customers
No Special Hardware
Works on any device with a web browser—no proprietary terminals needed
Customer Experience
Fast Transactions
Lightning-fast payments complete in seconds, not minutes or hours
Simple Payment Flow
Just scan and pay—no forms to fill out or cards to swipe
Privacy Focused
No personal information required to complete transactions
Perfect For
Aurora WebPOS is designed for businesses that need a simple, reliable way to accept Bitcoin payments.
Retail Shops
Perfect for small to medium-sized retail businesses looking to offer modern payment options without expensive hardware.
- Boutiques and specialty stores
- Pop-up shops and markets
Food & Beverage
Ideal for cafes, restaurants, and food trucks that want to streamline their payment process and reduce fees.
- Coffee shops and cafes
- Food trucks and market stalls
Service Providers
Great for mobile service providers who need to accept payments on-site with minimal equipment.
- Repair technicians and tradespeople
- Event vendors and freelancers
Built on Aurora API
WebPOS is just one example of what you can build with the powerful Aurora API. The possibilities are endless.
Create Your Own Solutions
Aurora API provides the building blocks for any Bitcoin Lightning payment application you can imagine. WebPOS is just the beginning.
Comprehensive Documentation
Well-documented endpoints and examples to get you started quickly
Developer-Friendly
RESTful API with Swagger documentation usable natively in various languages
Flexible Integration
Build custom solutions tailored to your specific business needs
What Will You Build?
Some ideas to get you started:
E-commerce Plugin
Marketplace
Subscription Service
Remittance Platform
// Create a Lightning invoice
const response = await fetch('https://api.aurora.com/v1/invoice', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_AUTH_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 10.00,
currency: 'EUR',
description: 'Coffee purchase',
extra: {}
})
});
const data = await response.json();
console.log(data.invoice.payment_request);