Skip to Content
Get Started
Welcome Background
AdmasPay Logo

Welcome Fellow Developer!

Integrate secure payments into your applications with our powerful API

Quick Start

Get started with AdmasPay in three simple steps. Our API makes it easy to accept payments via mobile money, bank transfers, and more.

👤

Create Account

Sign up for a merchant account and complete verification

🔑

Get API Keys

Generate your test and live API keys from the dashboard

🚀

Start Integrating

Use our SDKs or REST API to accept payments

Popular Guides

Simple Integration

Accept payments with just a few lines of code:

const response = await fetch(
  'https://api.admaspay.com/api/v1/initiate/transactions?command=initiate',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      amount: 100,
      phone_number: '0912345678',
      txn_ref: 'ORDER_12345'
    })
  }
);

const { checkout_url } = await response.json();
// Redirect customer to checkout_url

Need Help?

Our team is here to help you integrate AdmasPay successfully.

Last updated on