Environments
Switch between Test and Production mode with ease
v4 supports two environments: Test mode (sandbox) and Production (live).
Data Retention on Sandbox
To keep our integration test environment fast and efficient, we'll archive your test data after 30 days. This helps us maintain top performance! Just a heads-up that once data is archived, it can't be accessed again.
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 5 days ago