POST
/
api
/
v1
/
token
/
fungible
/
mint
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/token/fungible/mint \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "<string>",
  "amount": "<string>",
  "to": "<string>",
  "contractAddress": "<string>",
  "fromPrivateKey": "<string>",
  "nonce": 123
}'
{
  "data": {
    "txId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
network
string
required

The blockchain network (e.g., ETH, BSC, POL, XDC).

amount
string
required

The amount of tokens to mint.

to
string
required

The recipient's wallet address.

contractAddress
string
required

The contract address of the token.

fromPrivateKey
string
required

The sender's private key.

nonce
integer | null

The nonce of the transaction (optional).

Response

200
application/json
Tokens minted successfully.
data
object