Skip to main content

Available Environments

Base URL: https://teste-94u93qnn.uc.gateway.devPurpose: Development and testingFeatures:
  • Test with fake money
  • Faker endpoints available
  • Relaxed rate limits
  • Instant processing
  • No real KYC verification
Use for:
  • Development
  • Integration testing
  • Demo applications
  • CI/CD pipelines

Switching Environments

const config = {
  sandbox: {
    baseUrl: 'https://teste-94u93qnn.uc.gateway.dev',
    email: process.env.SANDBOX_EMAIL,
    password: process.env.SANDBOX_PASSWORD
  },
  production: {
    baseUrl: 'https://killb.app',
    email: process.env.PROD_EMAIL,
    password: process.env.PROD_PASSWORD
  }
};

const env = process.env.NODE_ENV === 'production' ? 'production' : 'sandbox';
const { baseUrl, email, password } = config[env];

Environment Differences

FeatureSandboxProduction
Real money
KYC verificationSimulatedReal
Payment processingInstantReal timing
Transaction limitsNoneBased on KYC
Faker endpoints
Rate limitsRelaxedEnforced

Next Steps

Sandbox Guide

Learn how to test in sandbox