🎉 Get 100 free credits on signup

Seamless OTP Verification
for Modern Apps

Secure authentication with hosted checkout pages and direct API integration. Built for developers, trusted by businesses.

Serverless
3-Strike Security
Ghana-Focused
10,000+
OTPs Sent
99.9%
Uptime
< 2s
Delivery Time

Everything You Need

Powerful features built for developers who demand reliability and simplicity

Hosted Checkout

Beautiful, pre-built checkout pages like Stripe. No UI development needed—just redirect and verify.

Dual Integration Modes

Choose between hosted checkout or direct API integration. Flexible for any use case.

Name Resolution

Automatically resolve phone numbers to names in Ghana. Perfect for KYC and user verification.

3-Strike Security

Built-in brute force protection with automatic lockout after 3 failed verification attempts.

Real-time Dashboard

Monitor OTP delivery, success rates, and usage analytics in a beautiful developer portal.

Flexible Billing

Credit-based pricing with 7 tiers. Credits never expire. Volume discounts up to 26% off.

🎁 100 Free Credits on Signup — No Credit Card Required

Simple, Transparent Pricing

Choose the plan that fits your needs. Credits never expire.

Starter

GHS 150
6,200 credits
GHS 0.02419/credit · 1 month
  • 6,200 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Basic Analytics
  • Email Support

Basic

GHS 200
8,030 credits
GHS 0.02491/credit · 1 month
  • 8,030 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Basic Analytics
  • Email Support
Most Popular

Growth

GHS 300
13,240 credits
GHS 0.02266/credit · 3 months
  • 13,240 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Advanced Analytics
  • Priority Support
  • Custom Sender ID

Pro

GHS 500
22,900 credits
GHS 0.02183/credit · 3 months
  • 22,900 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Advanced Analytics
  • Priority Support
  • Custom Sender ID
  • API Rate Limit Increase

Business

GHS 1000
53,200 credits
GHS 0.01880/credit · 3 months
  • 53,200 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Enterprise Analytics
  • 24/7 Support
  • Custom Sender ID
  • API Rate Limit Increase
  • Custom Integrations

Premium

GHS 2000
112,000 credits
GHS 0.01786/credit · 3 months
  • 112,000 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Enterprise Analytics
  • 24/7 Support
  • Custom Sender ID
  • API Rate Limit Increase
  • Custom Integrations
  • Dedicated Account Manager

Enterprise

GHS 3000
170,000 credits
GHS 0.01765/credit · 6 months
  • 170,000 SMS & Email OTPs
  • Hosted Checkout Pages
  • Direct API Access
  • Enterprise Analytics
  • 24/7 Support
  • Custom Sender ID
  • Unlimited API Rate
  • Custom Integrations
  • Dedicated Account Manager
  • SLA Guarantee

Need custom solutions or higher volumes? Contact us

Quick & Easy Integration

Choose your integration method. Start sending OTPs in minutes.

Standard Checkout

Create a session and redirect to hosted checkout page

// 1. Create checkout session
const response = await fetch('https://api.gatekeeperpro.live/api/checkout/create', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'your_api_key_here'
  },
  body: JSON.stringify({
    receiver: '+233XXXXXXXXX', // Phone or email
    type: 'phone', // or 'email'
    successUrl: 'https://yourapp.com/success',
    failureUrl: 'https://yourapp.com/failure',
    metadata: { userId: '12345' }
  })
});

const { sessionToken } = await response.json();

// 2. Redirect user to checkout
window.location.href = `https://checkout.gatekeeperpro.cc/${sessionToken}`;

// 3. Handle success callback
// User will be redirected to:
// https://yourapp.com/success?verified=true&receiver=233XXXXXXXXX&name=John+Doe