https://github.com/steppsr/getnftidsfromcollection
Bash script to get a list of all NFT IDs from a Collection using the Mintgarden API
https://github.com/steppsr/getnftidsfromcollection
bash chia chia-blockchain collection mintgarden-api nft nfts wallet
Last synced: 2 months ago
JSON representation
Bash script to get a list of all NFT IDs from a Collection using the Mintgarden API
- Host: GitHub
- URL: https://github.com/steppsr/getnftidsfromcollection
- Owner: steppsr
- Created: 2022-10-14T01:11:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-20T02:40:57.000Z (over 1 year ago)
- Last Synced: 2025-02-28T02:42:20.731Z (3 months ago)
- Topics: bash, chia, chia-blockchain, collection, mintgarden-api, nft, nfts, wallet
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NFTIDsFromCollection
Get a list of all NFT IDs for a Collection using the Mintgarden API## Requiements
You will need your Mintgarden Collection ID and update that line in the script.**How to find your Mintgarden Collection ID**
1. Go to https://mintgarden.io
2. Search for your collection name _ie. BattleKats_
3. URL result = https://mintgarden.io/collections/battlekats-col1kmrzafjx6ej8w79tz5vnjt4w8xuq2p6nmnheelgwwu3rsgsar0fsxc4wud
4. Your Mintgarden Collection ID is everything after the hyphen in the resulting URL. _ie. col1kmrzafjx6ej8w79tz5vnjt4w8xuq2p6nmnheelgwwu3rsgsar0fsxc4wud## Running the command
Use the `bash` command to run the script and pass in the Collection ID as the first parameter. You can also use redirect to send the output to a file.Example:
```
bash nftids.sh col1kmrzafjx6ej8w79tz5vnjt4w8xuq2p6nmnheelgwwu3rsgsar0fsxc4wud > nftids.txt
```