Skip to main content

Simplify Payments with Payd API

Empowering businesses with seamless payment solutions. Our comprehensive API equips you with the tools to create exceptional payment experiences that delight users and fuel your platform's growth.

Payd API Illustration

Complete Payment Solutions

Payd provides everything you need to build exceptional payment experiences that drive business growth and customer satisfaction.

💸

Accept Payments

Accept seamless payment collection via cards, banks, and mobile money across multiple countries with a single integration.

🚀

Send Money

Skip the wait. Transfer money instantly with Payd to mobile wallets, bank accounts, and other payment destinations.

📊

Manage Accounts

Stay on top of your payments. Effortlessly track your transactions, view balances, and manage your financial data.

🌍

Global Coverage

Operate in multiple countries with support for local payment methods and currencies across Africa and beyond.

⚙️

Developer Tools

Get started quickly with comprehensive SDKs, code examples, and developer resources in multiple languages.

📡

Real-time Webhooks

Stay updated with real-time notifications about payment events through our reliable webhook system.

Seamless Integration

Our APIs are designed for developers, with clear documentation and robust SDKs to help you integrate quickly and confidently.

JavaScript
const axios = require('axios');

const makePayment = async () => {
  try {
    const response = await axios.post('https://api.mypayd.app/api/v3/payments', {
      username: 'yourUsername',
      amount: 1000,
      phone_number: '+1234567890',
      channel_id: 'your-channel-id',
      currency: 'USD',
      callback_url: 'https://your-callback-url.com',
      transaction_channel: 'card'
    }, {
      headers: {
        'Content-Type': 'application/json',
        'Authorization': 'Basic ' + btoa('username:password')
      }
    });
    
    console.log('Payment successful:', response.data);
    return response.data;
  } catch (error) {
    console.error('Payment failed:', error);
  }
};

makePayment();

Need Help?

Reach out to our support team for any questions or assistance. We are here to help you pay and get paid globally.