GET
/
v1
/
wallets
/
{address}
curl --request GET \
  --url https://api.sandbox.meso.network/v1/wallets/{address} \
  --header 'Authorization: Basic <encoded-value>'
{
  "address": "<string>",
  "status": "new",
  "buying_power": {
    "amount": "1.45",
    "currency_code": "solana/SOL"
  }
}

Authorizations

Authorization
string
header
required

Use partnerId and secretKey as the username and password respectively. The client must send these credentials in the Authorization header, encoded in Base64. The format for the header is Authorization: Basic {credentials}, where "credentials" is the Base64 encoding of "partnerId:secretKey".

Path Parameters

address
string
required

The address of the wallet

Minimum length: 1

Response

200
application/json
success
address
string
required

The address of the wallet

status
enum<string>
required

The status of the wallet

  • new - This wallet is unknown to Meso. The user will be onboarded on their next transfer.
  • active - This wallet has been onboarded to Meso and is in good standing. The user can transfer.
  • inactive - This wallet has been onboarded, but cannot be used for a transfer at the current time
Available options:
new,
active,
inactive
buying_power
object

The largest transfer this wallet can perform, only provided for active wallets