Developer Documentation

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

1

Get your API key

Sign up for a PAYGabo account and navigate to Settings → API Keys to generate your secret key.

2

Make your first payment

Use the API to create a payment request. Test with sandbox mode before going live.

3

Handle webhooks

Register a webhook endpoint to receive real-time payment status updates.

create-payment.sh
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"
  }'

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