Masumi Logo

/wallet

Gets wallet status

GET
/wallet
token<token>

API key authentication via header (token)

In: header

Query Parameters

walletTypestring

The type of wallet to query

Value in"Selling" | "Purchasing"
idstring

The id of the wallet to query

Length1 <= length <= 250
includeSecret?string

Whether to include the decrypted secret in the response

Default"false"

Response Body

curl -X GET "https://loading/./../api/v1/wallet/?walletType=Selling&id=string&includeSecret=false"
{
  "status": "success",
  "data": {
    "walletVkey": "wallet_vkey",
    "note": "note",
    "PendingTransaction": null,
    "walletAddress": "wallet_address",
    "Secret": {
      "createdAt": "1970-01-20T20:00:36.260Z",
      "updatedAt": "1970-01-20T20:00:36.260Z",
      "mnemonic": "decoded_secret"
    }
  }
}