Build with PAYGabo
Integrate payments into your application in minutes. Clean REST API, comprehensive SDKs, and real-time webhooks for the Ghanaian market.
Quick Start
Get your API key
Sign up for a PAYGabo account and navigate to Settings → API Keys to generate your secret key.
Make your first payment
Use the API to create a payment request. Test with sandbox mode before going live.
Handle webhooks
Register a webhook endpoint to receive real-time payment status updates.
curl -X POST https://api.pay.gabochie.com/api/v1/payments \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 150.00,
"currency": "GHS",
"method": "momo",
"phone": "+233501234567",
"reference": "order_123",
"description": "Payment for Order #123"
}'Explore the Docs
Authentication
All API requests require a Bearer token in the Authorization header. Generate keys from your dashboard.
Payments
Create payments, check status, and process refunds. Supports MoMo, cards, and bank transfers.
Webhooks
Receive real-time notifications when payment events occur. Configurable endpoints with retry logic.
Error Handling
Standard HTTP status codes with structured error responses. Rate limits vary by plan tier.
Base URL
All API requests are made to the following base URL. Use the sandbox environment for testing.
https://api.pay.gabochie.com/api/v1