Test your integration before going live

Every Stablora account starts in test mode. There are two ways to test, and you should use both: sandbox networks for instant, repeatable scenarios in automated tests, and real testnets to see real addresses, confirmations, webhooks and payouts exactly as they will behave in production — with free coins that have no value.

1. Sandbox networks — instant simulation

Networks without the “testnet” label (e.g. tron, bitcoin) use simulated qtest_… identifiers. Create an invoice, then simulate the customer paying it:

POST /api/v1/test/deposits
Authorization: Bearer qk_test_…
{ "paymentId": "pay_…", "amount": "25", "transactionHash": "sim_order_1042" }

Send less, more or later than requested to exercise underpaid, overpaid and late. The same transactionHash is never credited twice — replay it to test your idempotency handling.

2. Real testnets — end-to-end with free coins

Create the invoice on a testnet network, open its checkout page and send testnet coins to the address shown. Stablora watches the chain, waits for confirmations, credits the payment and sends your webhooks. Payouts and refunds on testnets are real on-chain transactions.

NetworkAPI idAssetsWhere to get free coins
Ethereum SepoliasepoliaETH, USDCGoogle Cloud Web3 faucet (ETH) · faucet.circle.com (USDC)
Base Sepoliabase-sepoliaETH, USDCfaucet.circle.com (USDC) · Coinbase developer faucet (ETH)
Arbitrum Sepoliaarbitrum-sepoliaETH, USDCfaucet.circle.com (USDC)
OP Sepoliaop-sepoliaETH, USDCfaucet.circle.com (USDC) · Superchain faucet (ETH)
Polygon Amoypolygon-amoyPOL, USDCfaucet.circle.com (USDC) · Polygon faucet (POL)
Avalanche Fujiavalanche-fujiAVAX, USDCfaucet.circle.com (USDC) · Avalanche builder faucet (AVAX)
BNB Chain testnetbnb-testnetBNBBNB Chain testnet faucet
Solana devnetsolana-devnetSOL, USDCfaucet.solana.com (SOL) · faucet.circle.com (USDC)
TRON Niletron-nileTRX, USDTnileex.io → Get 1000 test coins
Bitcoin testnetbitcoin-testnetBTCcoinfaucet.eu (testnet) · bitcoinfaucet.uo1.net

Faucets rate-limit requests (usually once per day or every few hours per address). Testnet coins have no value; never send real coins to a testnet address.

3. Go-live checklist

API reference · Home