GET
/
v1
/
capabilities
curl --request GET \
  --url https://api.sandbox.meso.network/v1/capabilities \
  --header 'Authorization: Basic <encoded-value>'
{
  "supported_countries": [
    {
      "country_code": "US",
      "country_name": "United States"
    }
  ],
  "supported_currencies": [
    {
      "currency_code": "solana/SOL",
      "legacy_currency_code": "SOL",
      "currency_name": "Solana"
    },
    {
      "currency_code": "fiat/USD",
      "legacy_currency_code": "USD",
      "currency_name": "United States Dollar"
    }
  ],
  "supported_payment_methods": [
    {
      "payment_method_code": "debit",
      "payment_method_name": "Debit"
    }
  ],
  "transfer_limits": {
    "fiat/USD": {
      "min_transfer": "25.00",
      "max_transfer": "5000.00"
    }
  }
}

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".

Response

200
application/json

The supported capabilities

The response is of type object.