v1
latestOpenAPI 3.0.32026-07-1320201.0 MBBSC Addresses
Create Address
Creates a new address wich can be used to send and receive crypto currencies, ERC20 and ERC721 tokens. please provide a stron password within the request body. You will need the password everytime you interact with your address.
There are two ways to create an Address:
- unsecure: You will directly get the private key of your address which can be used to create transactions
- secure: You define a password, the privatekley will use this password as well as our own encryption chain to store the privatekey on our database. You can use this password instead of a private key to create transactions
post/api/v2/bsc/addresses
Headers
X-Network'testnet' | 'mainnet'
Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.
Authorizationstring required
Bearer token for authorization. Required for authenticated endpoints.
Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data' required
The MIME type of the request body.
Request body
Example request
{
"password": "|]|{+-"
}Response
Example response
{
"status": 201,
"ok": true,
"message": "Address created",
"data": {
"adderess": "0x7d3bC832A0860fD882FF4C2359e10268f4E5CCf8"
}
}