BSC Testnet Faucet

Instant and reliable. Get BNB testnet tokens for free.

Send Testnet BNB
to Your Wallet

You get 0.1 testnet BNB. No login. No commitment.
Your BNB is on it's way! While you wait, test our SDK 👉 

Get More BNB With the Tatum SDK

Copy the code, sign-up to Tatum Dashboard to get your API key, replace wallet, and run it for additional 0.05 BNB.

Code Snippet with Horizontal Scrolling
import { TatumSDK, Network, BinanceSmartChain } from '@tatumio/tatum'

const tatum = await TatumSDK.init<BinanceSmartChain>({
  network: Network.BINANCE_SMART_CHAIN_TESTNET,
})
 apiKey: {
        v4: 't-6509****07aed3',
      },
    });
    
const res = await tatum.faucet.fund('0x712e3a792c974b3e3dbe41229ad4290791c75a82')

if (res.data) {
  console.log(res.data)
} else {
  console.error(res.error)
}
Copy Code

Build Faster With the
Tatum SDK

Tatum SDK is open-source and gives you everything you need to build your Web3 application.

npm i @tatumio/tatum
Copy Code
GitHub license

Easily Monitor Binance Smart Chain Transactions

With the Tatum SDK monitoring even thousands of transactions via webhooks is easy.

import { TatumSDK, Network, BinanceSmartChain } from '@tatumio/tatum'

const tatum = await TatumSDK.init<BinanceSmartChain>({network: Network.BINANCE_SMART_CHAIN})

const data = await tatum.notification.subscribe.addressEvent({
  url: 'https://your-webhook-url.com',
  address: '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990'
})
Copy Code

Easily Get Balance

With the Tatum SDK you can get wallet balances for as many addresses as needed with one simple call.

import { TatumSDK, Network, BinanceSmartChain } from '@tatumio/tatum'

const tatum = await TatumSDK.init<BinanceSmartChain>({network: Network.BINANCE_SMART_CHAIN})

const balance = await tatum.rpc.getBalance
('0xa41d19F4258a388c639B7CcD938FCE3fb7D05e86')
Copy Code

Full List of Functions

There's a lot more that you can do with the Tatum SDK. Find the full list of methods in our documentation.

Frequently asked questions

How do I use the Binance testnet BNB faucet?

To request funds, enter your wallet address, and press “Send”. We support standard wallet addresses but not smart contracts. Don't forget to complete reCaptcha too.

How often can I use the faucet?

You can request 0.1 Binance testnet BNB every 24 hours.

What is a BNB testnet faucet?

Faucets offer developers testnet BNB to evaluate and refine applications prior to launching on the mainnet. Unlike many faucets that require information or have you wait in line for tokens, Tatum's faucet has no information requests.

What is Binance Smart Chain testnet? 

The Smart Chain testnet is one of the testnets for the Binance. Testnets, in the blockchain context, are environments that mirror the main network but use valueless tokens, allowing developers to test their applications, run experiments, or debug issues without incurring real costs or risks. Testnet BNB, in this context, refers to the test tokens used on the Binance Smart Chain testnet. Developers can acquire these tokens from a faucet, and they're crucial for testing purposes on the network.

I didn't get my token!

The time required for receiving your test tokens can change due to potential network congestion or possibly our set gas amount being slightly lower than other miner-preferred transactions. If you haven't received your testnet tokens after several hours, kindly reach on our Discord server.

I have issues with Google Captcha

This issue often arises when using a VPN – it's a Google restriction we don't govern. We advise disabling your VPN in this scenario.