Pay Per Action - Not Per Month

Micropayments for every action your app takes

Stop charging subscriptions. Charge $0.05 per text sent, $0.10 per search, $0.25 per booking. One API. Any project. Pay only for what actually happens.

Start Free - Get API KeySee How It Works
// Charge for any action - one line
const res = await fetch('/api/charge', {
  method: 'POST',
  headers: {
    'x-api-key': 'pp_live_your_key_here',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ action: 'clinic_search' }),
})

// { success: true, amount_usd: 0.10, balance_remaining: 9.90 }

Simple per-action pricing

No monthly fee. No setup fee. Fund your balance and pay only for what fires.

Text Sent

text_sent
$0.05

AI Answer

ai_answer
$0.10

Clinic Search

clinic_search
$0.10

Prescription Search

prescription_search
$0.10

Lead Captured

lead_captured
$0.25

Appointment Booked

appointment_booked
$0.25

Video Unlocked

video_unlocked
$0.50

Healthcare Roadmap

healthcare_roadmap
$1.00

Custom actions available on request. Payment processing: 2% fee applies.

Up in 5 minutes

One signup. One API key. One endpoint.

  1. Sign Up & Get Your API Key

    Register your project in seconds. Get a unique API key instantly.

  2. Fund Your Balance

    Add funds via credit card. Your balance is a prepaid pool that actions draw from.

  3. Call the API

    POST /api/charge with your action name. One call. One line of code.

  4. Pay Only for What Happens

    Each successful action deducts from your balance. No monthly fee. No waste.

3 endpoints. That's it.

POST/api/chargeCharge for an action. Deducts from balance.
Body
{ "action": "clinic_search" }
Response
{ "success": true, "amount_usd": 0.10, "balance_remaining": 9.90 }
GET/api/balanceCheck your current balance.
Response
{ "merchant": "HealthGap AI", "balance_usd": 9.90 }
GET/api/usageSee transaction history.
Response
{ "transactions": [...], "total_spent_usd": 0.10 }

All requests require the x-api-key header.

Ready to start?

Free to sign up. Fund your balance when you're ready to go live. No card required to get your API key.

Get Your Free API Key