I am trying to perform an API call with superagent but it encodes my api key which gets rejected.
get(url).query({ key: 'Fmjtd%7Cluu').end(function(err, res) {
The key is being sent as
Fmjtd%257Cluu
Any ideas how to prevent this using superagent? If I make it part of the 'url' part it's fine but I would like to pass it as query data if possible.