# Get Subnet Metadata

Returns subnet token metadata, including symbol, platform, contract address, decimals and supply figures.

_Source: https://beta.taostats.io/docs/api-reference/subnet/get-subnet-metadata_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/subnet/metadata/v1
```

Requires an API key in the `Authorization` header.

Returns subnet token metadata, including symbol, platform, contract address, decimals and supply figures. Records also include explorer and exchange links and the release schedule.

## Try it

Try this request in the browser on the HTML version of this page, or use the code samples below.

### Examples

Get metadata (github, discord, contact) for subnet 19

```text
https://api.taostats.io/api/subnet/metadata/v1?netuid=19
```

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/subnet/metadata/v1?netuid=19"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/subnet/metadata/v1?netuid=19', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/subnet/metadata/v1?netuid=19",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `netuid` | query | `integer (int32)` |  |  |
| `page` | query | `integer (int32)` |  |  |
| `limit` | query | `integer (int32)` |  |  |

## Responses

### `200` — Subnet metadata retrieved successfully

| Field | Type | Required |
| --- | --- | --- |
| `data` | `array` | Yes |
| `data[].block_explorer` | `string` | Yes |
| `data[].circulating_supply` | `string` | Yes |
| `data[].contract_address` | `string` | Yes |
| `data[].decimals` | `integer (int32)` | Yes |
| `data[].exchange_url` | `string` | Yes |
| `data[].logo` | `string` | Yes |
| `data[].max_supply` | `string` | Yes |
| `data[].name` | `string` | Yes |
| `data[].netuid` | `integer (int32)` | Yes |
| `data[].platform` | `string` | Yes |
| `data[].release_schedule` | `string` | Yes |
| `data[].symbol` | `string` | Yes |
| `data[].total_supply` | `string` | Yes |
| `pagination` | `object` | Yes |
| `pagination.current_page` | `integer (int32)` | Yes |
| `pagination.next_page` | `integer (int32), nullable` |  |
| `pagination.per_page` | `integer (int32)` | Yes |
| `pagination.prev_page` | `integer (int32), nullable` |  |
| `pagination.total_items` | `integer (int32)` | Yes |
| `pagination.total_pages` | `integer (int32)` | Yes |

### Other responses

| Status | Meaning |
| --- | --- |
| `400` | Bad request |
| `404` | Subnet metadata not found |
| `500` | Internal server error |

Every request needs an `Authorization` header holding your API key — see [Getting started with the Taostats API](https://beta.taostats.io/docs/start-here/getting-started-with-taostats-api).
