NFTScan NFT API Python 3 wrapper
A library providing Python 3 bindings for the NFTScan API
This library is in Alpha / Early Alpha state, and is untested / provided as is. Feel free to open PRs or bug reports for issues, features or extensions
Installation:
pip install nftscan-api
Usage:
Get a key and secret. Then, check out the api endpoints listed, eg (getGroupByNftContract)[https://developer.nftscan.com/doc/#operation/getAllNftByUserAddressUsingPOST] - and try to use them
from nftscan import NftScanAPI
nftScan = NftScanAPI(
apiKey=<key>,
apiSecret=<secret>)
test_wallet = "0x3becf83939f34311b6bee143197872d877501b11"
print(nftScan.getGroupByNftContract(erc="erc721", user_address=test_wallet))
If looking to also use pro api endpoints:
from nftscan import NftScanAPI
nftScanPro = NftScanProAPI(
apiKey=<key>,
apiSecret=<secret>)
test_wallet = "0x3becf83939f34311b6bee143197872d877501b11"
test_nft = "0xffe572aee5cded696f617125aa66b9746960f4ec"
print(nftScanPro.getGroupByNftContract(erc="erc721", user_address=test_wallet))
print(nftScanPro.getNftByContract(nft_address=test_nft))
Write json encoded response to a file:
nftScan.getGroupByNftContract(erc="erc721", user_address=test_wallet, export_file_name='out.txt'))
0.1.4 (2022-04-14)
Partial support for pro API
Fixed missing dependencies and bad formatting for requirements.dev.stxt
0.1.3 (2022-03-31)
Moved source repo to main NFTScan github org - https://github.com/nftscan2022/nftscan-api-python-sdk
0.1.2 (2022-03-31)
Bugfixes:
- page_index should start at 1
- removed spurious "walletType" argument accidentally sent to "getAllNftByUserAddress" endpoint
0.1.1 (2022-03-31)
- Fixed a corner case for dumping response data to file
0.1.0 (2022-03-30)