> For the complete documentation index, see [llms.txt](https://docs.protokol.com/developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.protokol.com/developers/sdk/nft/api-endpoints/base-configurations.md).

# Base Configurations

## Configurations

## /configurations

<mark style="color:blue;">`GET`</mark> `https://explorer.protokol.sh/api/nft/configurations`&#x20;

Returns Base Plugins configuration settings

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "data": {
    "package": {
      "name": "@protokol/nft-base-api",
      "currentVersion": "1.0.1",
      "latestVersion": "1.0.1"
    },
    "crypto": {
      "defaults": {
        "nftBaseTypeGroup": 9000,
        "nftCollectionName": {
          "minLength": 5,
          "maxLength": 40
        },
        "nftCollectionDescription": {
          "minLength": 5,
          "maxLength": 80
        },
        "nftCollectionAllowedIssuers": {
          "minItems": 1,
          "maxItems": 10
        },
        "nftTransfer": {
          "minItems": 1,
          "maxItems": 10
        },
        "nftCollectionJsonSchemaByteSize": 10000,
        "nftTokenAttributesByteSize": 10000
      }
    },
    "transactions": {
      "defaults": {
        "authorizedRegistrators": [],
        "feeType": 0
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}

### Examples

{% tabs %}
{% tab title="Curl" %}

```
curl https://explorer.protokol.sh/api/nft/configurations
```

{% endtab %}

{% tab title="Typescript" %}

```typescript
const response = connection.NFTBaseApi("configurations").index();

>>> Promise<ApiResponse<ConfigurationsResource>>
```

{% endtab %}
{% endtabs %}
