Environments

Sandbox for development, production for real transactions

Sandbox
Development and testing
  • No real money movement
  • Test adapter simulates all settlement flows
  • 60 requests per minute rate limit
  • 30-day data retention window
Production
Live transactions
  • Real fund transfers via Stripe Connect
  • Permanent data retention
  • 600 requests per minute rate limit
  • Full SLA and uptime guarantees
Feature Comparison
Side-by-side differences between sandbox and production
FeatureSandboxProduction
API Base URLapi.sandbox.zexrail.com/v1api.zexrail.com/v1
API Key Prefixsk_test_sk_live_
Settlement Adaptertest (simulated)stripe (real funds)
Real MoneyNoYes
Rate Limits60 req/min600 req/min
Data Retention30 daysPermanent
WebhooksFull supportFull support
Verity VerificationFull supportFull support
Switching Environments
# Sandbox
curl https://api.sandbox.zexrail.com/v1/agents \
  -H "Authorization: Bearer sk_test_your_key"

# Production
curl https://api.zexrail.com/v1/agents \
  -H "Authorization: Bearer sk_live_your_key"