Developer-Friendly API
A simple REST API — no SDKs required. Test in staging, deploy to production.
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"
}'