Skip to content

Instantly share code, notes, and snippets.

@nicosuave
Created October 1, 2015 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicosuave/03a6483dec5244af6dc7 to your computer and use it in GitHub Desktop.
Save nicosuave/03a6483dec5244af6dc7 to your computer and use it in GitHub Desktop.
Coinbase API anomalies
GET Exchange Rates does in fact require authentication
Ex:
curl https://api.coinbase.com/v2/exchange-rates -H 'CB-VERSION: 2015-09-27'
{"errors":[{"id":"invalid_token","message":"The access token is invalid"}]}
GET Currencies does in fact require authentication
Ex:
curl https://api.coinbase.com/v2/currencies -H 'CB-VERSION: 2015-09-27'
{"errors":[{"id":"invalid_token","message":"The access token is invalid"}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment