Loading content...
Loading...
Build and test your payment integration in a safe environment. No real money involved.
Everything you need to build and test confidently.
Pre-populated test accounts, cards, and transactions. Simulate any payment scenario.
Separate sandbox credentials that mirror production. Switch to live when ready.
Test webhook endpoints with simulated events. Trigger any event type to verify your integration.
Force specific API responses to test error handling. Simulate declined payments and edge cases.
Get started with just a few lines of code.
1const bieases = require('@bieases/sdk');23// Initialize with sandbox API key4const client = new bieases.Client({5 apiKey: 'sandbox_key_xxxx',6 environment: 'sandbox'7});89// Create a test payment10const payment = await client.payments.create({11 amount: 1000,12 currency: 'USD',13 description: 'Test payment'14});1516console.log('Payment ID:', payment.id);17console.log('Status:', payment.status);Get your sandbox running in minutes.
Create a free developer account.
Generate your sandbox API credentials.
Add our SDK to your application.
Run tests with mock transactions.