Brewing next-gen API docs. Got feedback?
Documentation
Explore guides, examples, and resources for every step of your Amazon Payment Services journey.
amazon-payment-services.com
Payment StatusProcessing
Transaction ID#APS-2024-156
Amount
499.99
Choose your integration path
From no-code solutions to fully customizable APIs, we have the right integration type for your business needs.
Accept every payment method
Support 20+ payment methods including cards, wallets, and local payment options across the Middle East.
Everything you need to grow
Comprehensive payment features designed to help businesses of all sizes accept payments and scale globally.
Built for developers
Comprehensive APIs, SDKs, and tools designed to make integration simple and powerful. Get up and running in minutes with our developer-friendly documentation.
RESTful APIs with comprehensive documentation
SDKs for iOS, Android, Flutter, Python, and more
Postman collections and interactive testing
Sandbox environment with test cards
payment-request.js
const payment = await aps.charge({
amount: 100.00,
currency: 'AED',
customer: {
email: 'customer@example.com',
name: 'John Doe'
},
source: {
type: 'card',
number: '4111111111111111'
}
});
console.log('Payment Status:', payment.status);
// Output: Payment Status: success