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

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

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"
    }
]
Modified at 2025-05-07 08:13:55
Previous
Auth
Next
Get Wallet
Built with