Build powerful payment solutions with our comprehensive APIs
Sign up and get your API keys from the dashboard
Learn about our API endpoints and features
Begin implementing Paylinc in your application
Accept payments, handle refunds, and manage transactions
Manage digital wallets, balances, and transfers
Handle user accounts, verification, and management
const API_URL = 'https://api.paylinc.org';
// Create a payment
const createPayment = async (token) => {
const response = await fetch(`${API_URL}/payments`, {
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 1000,
currency: 'NGN',
description: 'Product purchase'
})
});
return response.json();
};