Developers
Developer-Friendly API
A simple REST API — no SDKs required. Test in staging, deploy to production.
Simple REST API
One endpoint to create payments. No SDK downloads, no complex setup.
Test & Live Keys
Separate staging and production environments. Same API, different keys.
Clear Documentation
cURL examples you can test immediately. Go live in hours, not weeks.
One API endpoint
Create a payment with a single POST request to /v1/payments. Specify the amount, currency, and payment method.
Base URL
https://api.zuripay.co.zw/v1Authentication
Bearer token in the Authorization header
Environments
Staging for testing, Live for production. Same API, different keys.
curl -X POST https://api.zuripay.co.zw/v1/payments \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{
"amount": 1000,
"currency": "USD",
"description": "Order #123",
"customer": {
"email": "[email protected]"
},
"payment_method": "card"
}'