Skip to content

Instantly share code, notes, and snippets.

@exocomet
Created July 13, 2021 20:20
Show Gist options
  • Save exocomet/e32b78be950615d75d6548aed95fdcc7 to your computer and use it in GitHub Desktop.
Save exocomet/e32b78be950615d75d6548aed95fdcc7 to your computer and use it in GitHub Desktop.
Coinbase Pro - creating a request, Python 3
import json, hmac, hashlib, time, requests, base64
from requests.auth import AuthBase
# Create custom authentication for Exchange
class CoinbaseExchangeAuth(AuthBase):
def __init__(self, api_key, secret_key, passphrase):
self.api_key = api_key
self.secret_key = secret_key
self.passphrase = passphrase
def __call__(self, request):
timestamp = str(int(time.time()))
message = timestamp + request.method + request.path_url + (request.body or '')
hmac_key = base64.b64decode(self.secret_key)
signature = hmac.new(hmac_key, message.encode(), hashlib.sha256)
signature_b64 = base64.b64encode(signature.digest())
request.headers.update({
'CB-ACCESS-SIGN': signature_b64,
'CB-ACCESS-TIMESTAMP': timestamp,
'CB-ACCESS-KEY': self.api_key,
'CB-ACCESS-PASSPHRASE': self.passphrase,
'Content-Type': 'application/json'
})
return request
api_url = 'https://api.pro.coinbase.com/'
auth = CoinbaseExchangeAuth(API_KEY, API_SECRET, API_PASS)
r = requests.get(api_url + 'accounts', auth=auth)
print(r.json())
@exocomet
Copy link
Author

The docs were outdated...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment