Payment Gate as a Service

Monetize your tools with zero upfront cost. We handle payments, settlement, and discovery.

API

Free
18% network fee

Perfect for indie developers and small sites getting started.

  • Payment verification API
  • Real-time invocation logging
  • Partner dashboard
  • SDK + middleware
  • Email support
Start Free

Managed

$199/month
15% network fee

Full white-label payment infrastructure for enterprise.

  • Everything in Coaching tier
  • Managed settlement pipeline
  • White-label agent cards
  • Managed tool hosting
  • Custom network fee rates
  • Dedicated support
  • SLA guarantee
Contact Sales

Revenue Calculator

Estimate your monthly revenue from tool monetization

Gross Revenue$50.00
Network Fee-$9.00
Subscription-$0.00
Your Revenue$41.00

How It Works

1

Register

Sign up at the Developer Portal. Get your API key and site credentials.

2

Integrate

Install the SDK. Add payment middleware to your tool endpoints in one line of code.

3

Earn

Every invocation is verified, logged, and settled. View real-time stats in your dashboard.

Quick Start

npm install @energypager/sdk

import { createPaymentMiddleware } from '@energypager/sdk';

const paymentGate = createPaymentMiddleware({
  siteId: 'yoursite.com',
  apiKey: 'ep_live_...',
});

// Add to any Express route
app.post('/api/your-tool', paymentGate('your_tool'), handler);