Environments
Switch between Test and Production mode with ease

v4 supports two environments: Test mode (sandbox) and Production (live).
In the sandbox environment, all flows are mocked; no actual transaction processing occurs when you make requests. To connect to the sandbox environment, use https://api.flutterwave.cloud/developersandbox/
as your base URL for your requests.
For production, use https://api.flutterwave.cloud/f4bexperience/
as the base URL.
curl --location 'https://api.flutterwave.cloud/f4bexperience/customers?page=1' \
--header 'Content-Type: application/json'
curl --location 'https://api.flutterwave.cloud/developersandbox/customers?page=1' \
--header 'Content-Type: application/json'
Updated about 16 hours ago