Apps & Widgets
Pre-built, embeddable business apps you can integrate into your platform in minutes. Each app comes with interactive demos, AI-friendly documentation, and full customization options.
Built for AI-First Development
Our documentation is designed to work seamlessly with AI coding tools like v0, Cursor, Claude, and ChatGPT. Simply copy the integration code or describe what you need, and let AI handle the implementation.
POS Terminal
Complete point-of-sale system with product management, cart, and payment processing.
Invoicing
Professional invoice creation, management, and payment collection system.
Event Tickets
Event management with ticket sales, QR codes, and door scanning.
Payment Links
Create shareable payment links for quick one-time or recurring payments.
Quick Integration
Get started in under 5 minutes with our SDK. Works with React, Next.js, Vue, or vanilla JavaScript.
React / Next.js
npm install @peeap/widgets
import { POSTerminal } from '@peeap/widgets'
<POSTerminal
apiKey="pk_live_xxx"
theme="light"
/>Vanilla JavaScript
<script src="https://cdn.peeap.com/widgets.js"></script>
<div id="pos-terminal"></div>
<script>
Peeap.render('POSTerminal', {
container: '#pos-terminal',
apiKey: 'pk_live_xxx'
})
</script>For AI Coding Assistants
Building with v0, Cursor, or other AI tools? Here's how to prompt for Peeap integration:
Example prompt for AI:
"Add a Peeap POS Terminal to my Next.js app. Use the @peeap/widgets package with my API key 'pk_live_xxx'. Make it full-width on mobile and 600px wide on desktop. Use dark theme and hide the inventory section."