Skip to main content
POST
/
v1
/
getWalletList
GetWalletList
curl --request POST \
  --url https://api.mpcvault.com/v1/getWalletList \
  --header 'Content-Type: application/json' \
  --header 'x-mtoken: <api-key>' \
  --data '
{
  "vaultUuid": "<string>",
  "page": "<string>",
  "limit": "<string>"
}
'
{
  "detailsList": [
    {
      "vaultUuid": "<string>",
      "keyType": "KEY_TYPE_UNSPECIFIED",
      "keyPath": "<string>",
      "publicKey": "aSDinaTvuI8gbWludGxpZnk=",
      "networkType": "NETWORK_TYPE_UNKNOWN",
      "address": "<string>",
      "ref": "<string>",
      "status": "STATUS_UNSPECIFIED",
      "name": "<string>"
    }
  ],
  "error": {
    "executeSigningRequestsErrorCode": "EXECUTE_SIGNING_REQUESTS_ERROR_CODE_UNSPECIFIED",
    "message": "<string>"
  }
}
Returns all wallets in a vault. Use page and limit to paginate (e.g. limit 100, max 100 per page).

Authorizations

x-mtoken
string
header
required

Your API token. Required for all API requests.

Body

application/json
vaultUuid
string

required:true symbol_value:"12789f5ee5fb-07f5-470c-a2ff-081e2d6d107a" default:null comment:vault_uuid is the UUID of the vault that the wallet was created in.

page

symbol_value:"1" default: 1 comment:page is the page number.

limit

symbol_value:"100" default:100 max:100 comment:limit is the number of wallets to return.

Response

200 - application/json

Success

detailsList
details_list · object[]

symbol_value:"[{address: 0x71C7656EC7ab88bd32g47dgdhhssq245f6d8976F, name: test wallet, status: STATUS_ACTIVE}]" comment:details_list is the list of wallets.

error
execute_signing_requests_error_code · object