I'm probably missing something very stupid but I'm having trouble changing currencies in the client.get_exchange_rates() and get_spot_price() methods
As defined here, https://developers.coinbase.com/api/v2?python#exchange-rates
it's supposed to be as simple as :
rates_BTC = client.get_exchange_rates(currency='BTC')
print(rates_BTC)
but it always return in USD
{
"currency": "USD",
"rates": {
"AED": "3.67",
"AFN": "68.66",
"ALL": "111.94",
...
What am I missing?