Skip to main content

Documentation

Explore guides, examples, and resources for every step of your Amazon Payment Services journey.

amazon-payment-services.com
Payment Status
Processing
Transaction ID#APS-2024-156
Amount
SAR499.99
Secured by APS • Processing time: 2.3s

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
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