Skip to main content
POST
https://api.mpcvault.com
/
v1
/
getWalletInfo
curl -X POST https://api.mpcvault.com/v1/getWalletInfo \
  -H "Content-Type: application/json" \
  -H "x-mtoken: YOUR_API_TOKEN" \
  -d '{
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58"
  }'
{
  "details": {
    "uuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58",
    "publicKey": "0x04bfcab...",
    "networkType": "NETWORK_TYPE_ETHEREUM",
    "vaultUuid": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Treasury Wallet",
    "ref": "treasury-001",
    "createdAt": "2024-01-15T10:30:00Z"
  }
}
Returns the details of a wallet using either its blockchain address or customer reference.

Headers

x-mtoken
string
required
Your API token

Body

address
string
Blockchain address of the wallet. Use either address or ref, not both.
ref
string
Customer reference of the wallet. Use either address or ref, not both.

Response

details
object
The wallet details
error
object
Error details (if failed)
curl -X POST https://api.mpcvault.com/v1/getWalletInfo \
  -H "Content-Type: application/json" \
  -H "x-mtoken: YOUR_API_TOKEN" \
  -d '{
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58"
  }'
{
  "details": {
    "uuid": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58",
    "publicKey": "0x04bfcab...",
    "networkType": "NETWORK_TYPE_ETHEREUM",
    "vaultUuid": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Treasury Wallet",
    "ref": "treasury-001",
    "createdAt": "2024-01-15T10:30:00Z"
  }
}