Skip to content

Instantly share code, notes, and snippets.

@coinscious-io
Created August 2, 2019 14:26
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 coinscious-io/1d0f65a9c8d7a1fbf3827b80c3526c9e to your computer and use it in GitHub Desktop.
Save coinscious-io/1d0f65a9c8d7a1fbf3827b80c3526c9e to your computer and use it in GitHub Desktop.
Get list of supported cryptocurrency trading pairs at a specific exchange
import requests
url = "https://api.coinscious.org/exchanges/poloniex/pairs"
payload = ""
headers = {
'Authorization': "Bearer <token>"
}
response = requests.request("GET", url, data=payload, headers=headers)
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment