# Get TradingView Udf Symbol Info

Returns TradingView symbol metadata, including price scales, trading sessions and supported chart capabilities.

_Source: https://beta.taostats.io/docs/api-reference/tradingview/get-tradingview-udf-symbol-info_

_Last reviewed: 2026-09-18_

```http
GET https://api.taostats.io/api/dtao/tradingview/udf/symbol_info
```

Requires an API key in the `Authorization` header.

Returns TradingView symbol metadata, including price scales, trading sessions and supported chart capabilities.

## Try it

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

### Code samples

**cURL**

```bash
curl -H "Authorization: <YOUR_API_KEY>" \
  "https://api.taostats.io/api/dtao/tradingview/udf/symbol_info"
```

**JavaScript**

```js
const response = await fetch('https://api.taostats.io/api/dtao/tradingview/udf/symbol_info', {
  headers: {
    Authorization: '<YOUR_API_KEY>',
  },
});
const data = await response.json();
```

**Python**

```python
import requests

response = requests.get(
    "https://api.taostats.io/api/dtao/tradingview/udf/symbol_info",
    headers={"Authorization": "<YOUR_API_KEY>"},
)
data = response.json()
```

## Parameters

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

## Responses

### `200` — Symbol info retrieved successfully

| Field | Type | Required |
| --- | --- | --- |
| `description` | `array` | Yes |
| `description[]` | `string` | Yes |
| `exchange-listed` | `string` | Yes |
| `exchange-traded` | `string` | Yes |
| `has-dwm` | `boolean` | Yes |
| `has-intraday` | `boolean` | Yes |
| `minmovement` | `integer (int32)` | Yes |
| `pricescale` | `integer (int64)` | Yes |
| `session` | `string` | Yes |
| `session-regular` | `string` | Yes |
| `symbol` | `array` | Yes |
| `symbol[]` | `string` | Yes |
| `timezone` | `string` | Yes |
| `type` | `array` | Yes |
| `type[]` | `string` | Yes |

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