Build Anything.
Ship Fast.
A modern, fully-documented REST API built for developers who need full control. OpenAPI 3.0 spec, sandbox environment, webhooks, and SDKs in Node.js, Python, and PHP.
Core API Endpoints
Official SDKs
npm install zyrix-sdkconst zyrix = require('zyrix-sdk');
const payment = await zyrix.payments.create({
amount: 25000,
currency: 'IQD',
method: 'card'
});pip install zyriximport zyrix client = zyrix.Client(api_key) payment = client.payments.create( amount=250, currency='SAR', method='crypto' )
composer require zyrix/sdk$zyrix = new Zyrix\Client($apiKey); $payment = $zyrix->payments->create([ 'amount' => 1500, 'currency' => 'TRY', 'method' => 'card' ]);
Webhook Events
payment.completedFired when a payment is fully confirmed and funds are captured.
payment.failedFired when a payment attempt fails — includes error code and reason.
payment.pendingFired for crypto payments awaiting blockchain confirmation.
refund.issuedFired when a refund is successfully processed.
dispute.openedFired when a chargeback or dispute is raised by the customer's bank.
settlement.completedFired when a settlement batch is processed and funds are on their way.
Developer Experience
OpenAPI 3.0 Spec
Full machine-readable API specification. Import into Postman, Insomnia, or any API client. Auto-generate client code in 40+ languages.
Sandbox Environment
Complete test environment with simulated payment flows, webhook delivery, and settlement cycles. Test cards, test crypto wallets, test COD.
API Key Management
Generate separate live and test API keys. Restrict keys by IP, domain, or permission scope. Rotate keys without downtime.
Request Logs
Full request and response logs for every API call — filterable by endpoint, status, time. Debug integration issues without guessing.
Low Latency
API response times under 200ms for most endpoints. Hosted on edge infrastructure across MENA & Europe for minimal latency.
HMAC Webhook Signing
Every webhook is signed with HMAC-SHA256. Verify signatures on your server to ensure events are genuinely from Zyrix.