# 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](https://docs.idexo.com/get-api-key):

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](https://docs.idexo.com/master), 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))

```
