1 · Set up test access
Create a business account and open the developer tools in your dashboard. Generate a test API key and keep it on your server.
Developers
Connect payment creation, status updates and reconciliation with REST APIs and signed webhooks. Test your integration before processing real payments.
API
Create payments, receive events and reconcile orders.
curl -X POST https://api.zyndpay.io/v1/paylinks \
-H 'Authorization: Bearer YOUR_TEST_KEY' \
-H 'Content-Type: application/json' \
-d '{
"slug": "order-1042",
"title": "Order 1042",
"amountMinor": 12000000,
"currency": "USDT",
"acceptedMethods": ["CRYPTO"],
"category": "SERVICE_ONLINE"
}'Test example for a completed business profile. Use your test key, a unique slug and an enabled currency and payment method. See the API reference before integrating.
Developers
Create a business account and open the developer tools in your dashboard. Generate a test API key and keep it on your server.
Send a request to POST /v1/paylinks with your test key and the required payment details. Use the returned link to test the hosted customer journey.
Configure your webhook endpoint and verify the signature on each delivery. Use the payment status and your order reference to update your application.
Use a zynd_test_* key to exercise supported test flows without production funds. Complete business verification and review enabled payment methods before switching to live processing.
Separate test and live credentials, assign the permissions your integration needs and rotate API keys from the dashboard.
Create payments, receive events and reconcile orders.
Get your API keys