Hi,
is the data behind this API still updated? I tried
url = 'https://deep-index.moralis.io/api/v2/nft/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/lowestprice?chain=eth&days=10&marketplace=opensea'
Which should give the lowest sale in the last 10 days for Bored Ape Yacht Club, and it also gives the βCould not get NFT lower Priceβ, even-though it is extremely actively traded. When I up the days to 26 it does work, 25 or lower however does not.
url = 'https://deep-index.moralis.io/api/v2/nft/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/lowestprice?chain=eth&days=26&marketplace=opensea'
get = requests.get(url,headers=headers)
==>{'transaction_hash': '0x962dec25573f4cd58e9b6d55760399056608f9e62c74b5a58f6eae6dbc63f057', 'transaction_index': '73', 'token_id': ['2608'], 'seller_address': '0x9aefeaf0b5f18807a01a7dd35db1ce570096a6ca', 'buyer_address': '0x9b37bc499de5e675063695211618f3cd64a1b9fc', 'token_address': '0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d', 'marketplace_address': '0x7be8076f4ea4a4ad08075c2508e481d6c946d12b', 'price': '51000000000000000000', 'block_timestamp': '2021-12-13T03:40:28.000Z', 'block_number': '13794471', 'block_hash': '0xd0111536867eadb4a9797e28c6aeb56b332d7533cad9162ba9a624d6fa0507a2', 'token_ids': ['2608']}
url = 'https://deep-index.moralis.io/api/v2/nft/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/lowestprice?chain=eth&days=25&marketplace=opensea'
get = requests.get(url,headers=headers)
==>
{'message': 'Could not get NFT lower Price'}