Build with PaySSD
Powerful APIs and tools to integrate payments into your applications. From simple payment links to full API integration.
Quick Start
Get up and running in minutes
Create Account
Sign up and complete verification
Get API Keys
Generate keys from your dashboard
Start Building
Use our API to accept payments
Integration Options
Choose the integration that fits your needs
REST API
Full-featured RESTful API for custom integrations. Create payments, manage links, and handle webhooks programmatically.
Webhooks
Real-time event notifications for payment status changes. Never miss a transaction update.
Payment Links
No-code payment collection. Create shareable links from your dashboard or via API.
Mobile SDKs
Native SDKs for iOS and Android. Embed payments directly in your mobile apps.
E-commerce Plugins
Ready-made plugins for popular e-commerce platforms. Install and start accepting payments.
Checkout.js
Embeddable JavaScript widget for seamless checkout on your website.
Simple API
Create a payment in just a few lines of code
// Create a payment
const response = await fetch('https://api.payssd.com/v1/payments', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 100.00,
currency: 'USD',
customer_email: 'customer@example.com',
redirect_url: 'https://yoursite.com/success'
})
});
const payment = await response.json();
// Redirect customer to payment.checkout_url