quoine API get products

取り扱い商品を取得

from pprint import pprint
import requests
import json

url = 'https://api.liquid.com/products'
res = requests.get(url).json()#jsonに変換

#'id'で並べ替え、辞書の並び替えのお作法
res1=sorted(res,key=lambda x:int(x['id']))

for pr in res1:
    print(pr['id'],pr['currency_pair_code'],pr['currency'],pr['last_traded_price'])

id ペア名 通貨 平均価格(24H?)
1 BTCUSD USD 57871.72478
3 BTCEUR EUR 48328.51
5 BTCJPY JPY 6297900.54941
7 BTCSGD SGD 77817.8
9 BTCHKD HKD 447257.6
13 BTCAUD AUD 74035.08
27 ETHUSD USD 1784.72
28 ETHEUR EUR 1493.63
29 ETHJPY JPY 194046.62805
# ・・・・
# 718まで有る


コメント

タイトルとURLをコピーしました