---
title: "Send BSC / BEP20 from account to account"
method: POST
path: "/v3/bsc/transaction"
tags: ["BNB Smart Chain (BSC) - Tatum API"]
---

# Send BSC / BEP20 from account to account

`POST /v3/bsc/transaction`

/v3/bsc/transaction

**2 credits per API call**

Send BNB or Tatum supported BEP20 token from account to account.  
  

**Signing a transaction**

When sending BNB, you are charged a fee for the transaction, and you must sign the transaction with the private key of the blockchain address from which the fee will be deducted.

Providing the private key in the API is not a secure way of signing transactions, because the private key can be stolen or exposed. Your private keys should never leave your security perimeter. You should use the private keys only for testing a solution you are building on the **testnet** of a blockchain.

For signing transactions on the **mainnet**, we strongly recommend that you use the Tatum [Key Management System (KMS)](https://github.com/tatumio/tatum-kms) and provide the signature ID instead of the private key in the API. Alternatively, you can use the [Tatum JavaScript client](https://github.com/tatumio/tatum-js/tree/v2).

## Request body

- union
  - TransferBscBlockchain
    - `data` string — (Only for BSC transactions) Additional data that can be passed to a blockchain transaction as a data property; must be in the hexadecimal format
    - `nonce` number — Nonce to be set to BSC transaction. If not present, last known nonce will be used.
    - `to` string, required — Blockchain address to send assets
    - `currency` 'BSC' | 'BETH' | 'BBTC' | 'RMD' | 'USDC_BSC' | 'USDT_BSC' | 'B2U_BSC' | 'BADA' | 'WBNB' | 'GMC_BSC' | 'BDOT' | 'BXRP' | 'BLTC' | 'BBCH' | 'HAG' | 'CAKE' | 'BUSD_BSC', required — Currency to transfer from BSC Blockchain Account. BEP20 tokens like BETH, BBTC, BADA, WBNB, BDOT, BXRP, BLTC, BBCH, CAKE are available only for mainnet use.
    - `fee` CustomFee — The custom defined fee; if not present, will be calculated automatically
      - `gasPrice` string, required — The price for one gas unit (in Gwei)
      - `gasLimit` string, required — The maximum number of gas units that you are willing to spend on processing the transaction at the provided gas price
    - `amount` string, required — Amount to be sent.
    - `fromPrivateKey` string, required — Private key of sender address. Private key, or signature Id must be present.
  - TransferBscBlockchainKMS
    - `data` string — (Only for BSC transactions) Additional data that can be passed to a blockchain transaction as a data property; must be in the hexadecimal format
    - `nonce` number — Nonce to be set to BSC transaction. If not present, last known nonce will be used.
    - `to` string, required — Blockchain address to send assets
    - `currency` 'BETH' | 'BBTC' | 'BADA' | 'WBNB' | 'BDOT' | 'BXRP' | 'BLTC' | 'BBCH' | 'BSC' | 'USDT_BSC', required — Currency to transfer from BSC Blockchain Account. BEP20 tokens like BETH, BBTC, BADA, WBNB, BDOT, BXRP, BLTC, BBCH, CAKE are available only for mainnet use.
    - `fee` CustomFee — The custom defined fee; if not present, will be calculated automatically
      - `gasPrice` string, required — The price for one gas unit (in Gwei)
      - `gasLimit` string, required — The maximum number of gas units that you are willing to spend on processing the transaction at the provided gas price
    - `amount` string, required — Amount to be sent.
    - `index` number — If signatureId is mnemonic-based, this is the index to the specific address from that mnemonic.
    - `signatureId` string, uuid, required — Identifier of the private key associated in signing application. Private key, or signature Id must be present.

## Response `200`

OK

- union
  - TransactionHash
    - `txId` string, required — The hash (ID) of the transaction
  - SignatureId
    - `signatureId` string, uuid, required — The internal Tatum ID of the prepared transaction for Key Management Sysytem (KMS) to sign<br/>This is different from the <code>signatureId</code> parameter that you provided in the request body. The <code>signatureId</code> parameter in the request body specifies the signature ID associated with the private key in KMS.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. Not valid or inactive subscription key present in the HTTP Header.
- `403` — Forbidden. The request is authenticated, but it is not possible to required perform operation due to logical error or invalid permissions.
- `500` — Internal server error. There was an error on the server during the processing of the request.

---

[API](https://skmtc.net/tatum/apis/blockchain-data.md) · [All operations](https://skmtc.net/tatum/apis/blockchain-data/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tatum/blockchain-data/revisions/8622ee4b8fae/schema)
