-1

私はこのAPI応答を持っています.いくつかの値を取り、それらをpython BOTの変数として保存したい.私はそれが機能し、すべてを与える「統計」でそれを試します。

API https://api.opensea.io/api/v1/collection/ogcats-harvest-galaxy/stats

url = "https://api.opensea.io/api/v1/collection/ogcats-harvest-galaxy/stats"

 headers = {"Accept": "application/json"}

response = requests.request("GET", url)
json_response = response.json()
 floor= json_response['floor_price']

助けてください:)

4

1 に答える 1

2
url = "https://api.opensea.io/api/v1/collection/ogcats-harvest-galaxy/stats"

headers = {"Accept": "application/json"}

response = requests.request("GET", url)
json_response = response.json()
floor= json_response['stats']['floor_price']

クレジット:@kindall

于 2022-01-14T21:10:51.627 に答える