SDKs & Libraries

Official SDKs

Integrate PAYGabo into your application using your preferred language. All SDKs include TypeScript definitions, automatic retries, and sandbox support.

Install

npm install @paygabo/sdk

About

Official JavaScript SDK for Node.js and browser environments. Full TypeScript support included.

Quick Start

example.go
import { PayGabo } from "@paygabo/sdk";

const paygabo = new PayGabo({
  apiKey: "YOUR_API_KEY",
  environment: "sandbox",
});

const payment = await paygabo.payments.create({
  amount: 150.00,
  currency: "GHS",
  method: "momo",
  phone: "+233501234567",
  reference: "order_123",
});

console.log(payment.id); // "pay_abc123"
View on GitHub