Powerful, flexible APIs designed for developers. Get started in minutes with comprehensive documentation and ready-to-use SDKs.
curl -X POST https://api.apexonpay.com/v1/payments \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{
"amount": 2000,
"currency": "usd",
"payment_method": {
"type": "card",
"card": {
"number": "4242424242424242",
"exp_month": 12,
"exp_year": 2025,
"cvc": "123"
}
}
}'
From signup to first payment in less than 10 minutes
Sign up for your free ApexonPay account and get instant access to test keys
Retrieve your test and live API keys from the dashboard
Use our API to process your first test payment
Switch to live keys and start accepting real payments
Ready-to-use libraries for your favorite programming languages and frameworks
Everything you need to integrate payments into your application
Complete marketplace payment infrastructure with merchant onboarding and automated payouts
Streamlined KYC and verification process to onboard merchants quickly and securely. Our automated system handles compliance requirements while providing a smooth user experience.
POST /v1/accounts
{
"type": "express",
"country": "US",
"email": "merchant@example.com",
"business_profile": {
"name": "Example Store",
"industry": "retail"
},
"capabilities": {
"card_payments": {"requested": true},
"transfers": {"requested": true}
}
POST /v1/transfers
{
"amount": 1000,
"currency": "usd",
"destination": "acct_merchant123",
"description": "Payment for order #1234",
"metadata": {
"order_id": "1234",
"marketplace_fee": "30"
}