> For the complete documentation index, see [llms.txt](https://docs.idexo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.idexo.com/nft/create-an-uncapped-soulbound-nft-sbt-collection.md).

# Create an Uncapped Soulbound NFT (SBT) Collection

A Soulbound NFT is one where the holder cannot transfer the NFT. Idexo first issued a Soulbound NFT with its own [Idexo Early Adopter NFTs](https://bscscan.com/token/0x5fd45a09a59fcb396c7c1754f018dd822ddd8ae6) back in April 2021 on Binance Smart Chain.&#x20;

This standard Uncapped SBT Collection removes the transfer function for holders and reserves it for the owner of the contract (for recovery purposes).&#x20;

To use this method, you need an [idexo API key](/get-api-key.md):

You will need to specify the network you want to use, choosing from the following network names:&#x20;

* avalanche
* bnbchain
* dogechain
* ethereum
* fantom
* polygon

Assuming you have [installed the SDK](/master.md), you can use the following code in your file (instructions on modifying it follows):

```javascript
const ido = require('idexo-sdk')

ido.NFTs.createSBTUncapped(apiKey, network, name, symbol)
.then(res => console.log(res.data))

```
