DEVELOPER API ACCESS

Get Free API Keys

First $10M Volume Free Forever

Start building with the world's most advanced AI payment orchestration platform

Sign up in 60 seconds • No credit card required • Unlimited test transactions

Create Developer Account

Get instant access to sandbox API keys

SOC 2
PCI DSS
Unlimited Tests

Instant Access To

Live Sandbox API Keys
Test mode active - no real money
Full Documentation & SDKs
Node.js, Python, Go, Ruby, PHP
Interactive Code Playground
Test API calls in real-time
AI Routing & Fraud Simulators
Test all features before going live
Unlimited Test Transactions
No limits on sandbox testing
curl
Example Request
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]"
  }'
payment.js
Node.js SDK
const paymatrix = require('paymatrix-node');

const payment = await paymatrix.payments.create({
  amount: 500,
  currency: 'USD',
  customer_email: '[email protected]'
});

console.log(payment.status); // 'approved'
payment.py
Python SDK
import paymatrix

payment = paymatrix.Payment.create(
    amount=500,
    currency="USD",
    customer_email="[email protected]"
)

print(payment.status)  # approved

Ready to Go Live?

Contact our team for production API keys and dedicated support

Request Production Access