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

Get Wallet

GET
/api/Wallet/{vaultId}
Fetches wallet information based on a Vault(wallet group)ID.

Request

Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/Wallet/'
Response Response Example
{
  "vault": {
    "id": "string",
    "name": "string",
    "status": "string",
    "organisationId": "string",
    "purpose": "string",
    "createdAt": "2024-04-08T10:20:30Z",
    "deletedAt": "2024-04-08T10:20:30Z",
    "updatedAt": "2024-04-08T10:20:30Z",
    "visibleAssets": [
      {
        "id": "string",
        "publicKey": "string",
        "balance": "string",
        "createdAt": "2024-04-08T10:20:30Z",
        "explorerUri": "string",
        "asset": {
          "id": "string",
          "name": "string",
          "symbol": "string",
          "contractAddress": "string",
          "decimals": 18,
          "explorerUri": "string",
          "logoUri": "string"
        }
      }
    ]
  }
}
Modified at 2025-05-07 08:14:44
Previous
Create Vault(multiple wallets)
Next
Get Asset
Built with