Start building with the world's most advanced AI payment orchestration platform
Sign up in 60 seconds • No credit card required • Unlimited test transactions
Get instant access to sandbox API keys
Your sandbox API keys are ready
pk_test_51ExampleKey1234567890
sk_test_ExampleSecret987654321
https://api.paymatrixai.com/v1
Ready to go live? Contact us for production keys
curl https://api.paymatrixai.com/v1/payments \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 500,
"currency": "USD",
"customer_email": "[email protected]"
}'
const paymatrix = require('paymatrix-node');
const payment = await paymatrix.payments.create({
amount: 500,
currency: 'USD',
customer_email: '[email protected]'
});
console.log(payment.status); // 'approved'
import paymatrix
payment = paymatrix.Payment.create(
amount=500,
currency="USD",
customer_email="[email protected]"
)
print(payment.status) # approved
Contact our team for production API keys and dedicated support
Request Production Access