# 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))

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.idexo.com/nft/create-an-uncapped-soulbound-nft-sbt-collection.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
