import requests import pandas as pd from pandas.io.json import json_normalize # put down your key key = '*' api = 'https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?CMC_PRO_API_KEY=' api += key # load the data raw_data = requests.get(api).json() json_data = raw_data['data'] # read the data as a data frame df0 = pd.DataFrame.from_dict(json_data) #print(df0) # normalize the nested column df0_normalized = json_normalize(df0['quote']) # concatinate the two data frames df1 = pd.concat([df0, df0_normalized], axis=1) df1 = df1.reindex(df1.index) df1.head() # select the two columns df1_selected = df1[['name','USD.market_cap']] df1_selected.head() # sorting the dataframe by name print(df1_selected)
coinmarketというサイト(仮想通貨の情報が参照できる)でAPIを用いてます。
これを実行すると
name
10 Bitcoin 6.491276e+11 21 Ethereum 2.549957e+11 32 Tether 6.185007e+10 43 Binance Coin 5.097516e+10 54 Cardano 3.960971e+10 6.. ... ... 795 Siacoin 5.596490e+08 896 BakeryToken 5.550047e+08 997 0x 5.556952e+08 1098 Revain 5.490715e+08 1199 The Sandbox 5.460100e+08
こんな感じでデータが取得できますが100までしか情報が取得できません。
元のサイトのページでは1ページ目に100通貨分が表示されているので、APIに詳しくはありませんがそれに倣った表示になっていると思っています。
100以降のデータを取得することはAPIの仕様上可能なのでしょうか?
変数apiにはurlがありますがページ遷移するような部分もないように見えます。
ご教授よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー