如何获取特定智能合约的所有 NFT

How to get all the NFTs of particular smart contract

我尝试了 https://docs.opensea.io/reference opensea.io 文档来获取数据。但是,我认为有 2 个 API。

curl --request GET \
     --url https://api.opensea.io/api/v1/asset/0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb/1/

这是针对单个资产的,它也需要一个代币 ID。但是我想要一个特定智能合约地址的所有 NFT 的数据,只需提供智能合约地址即可。

这是一份合同。

curl --request GET \
     --url https://api.opensea.io/api/v1/asset_contract/0x06012c8cf97bead5deae237070f9587f8e7a266d

assets 端点 (docs) 具有 asset_contract_address 过滤器,允许您按合约地址进行过滤。这将有效地允许您对合约的所有 NFT 进行分页(Opensea 知道)。

示例:

curl 'https://api.opensea.io/api/v1/assets?offset=0&limit=20&asset_contract_address=0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb'