Bitstech API docs
  1. Vault Endpoints
Bitstech API docs
  • Auth Endpoints
    • Auth
      POST
  • Vault Endpoints
    • Create Vault(multiple wallets)
      POST
    • Get Wallet
      GET
    • Get Asset
      GET
  • Transaction Endpoints
    • Transaction Create
      POST
    • Internal transaction create
      POST
    • Get Transaction
      GET
  • WebHooks
    • Incoming payment notification
      POST
  1. Vault Endpoints

Create Vault(multiple wallets)

POST
/api/Wallet/create-multiple
Used to create a vault or a collection of wallets for all supported assets grouped to a single entity(client, userID, etc..)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/Wallet/create-multiple' \
--header 'Authorization: Bearer token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "vaultName": "string"
}'
Response Response Example
[
    {
        "vaultName": "string",
        "asset": "string",
        "address": "string",
        "vaultId": "string"
    }
]

Request

Header Params
Authorization
string 
optional
Example:
Bearer token
Body Params application/json
vaultName
string 
required
Examples

Responses

🟢200Success
application/json
Body
array of:
walletGroupName
string 
optional
asset
string 
optional
address
string 
optional
walletGroupId
string 
optional
Previous
Auth
Next
Get Wallet
Built with