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
About AdmasPay
Learn about our features and capabilities
API Configuration
Set up your API keys and webhooks
Accept Payments
Start accepting payments in your app
Verify Payments
Confirm transaction status securely
Direct Payment
Build custom checkout experiences
Payment Methods
View all supported payment options
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_urlNeed Help?
Our team is here to help you integrate AdmasPay successfully.
Last updated on