Skip to content

TradingView UDF symbol info

GET /api/dtao/tradingview/udf/symbol_info

Returns TradingView Universal Data Feed (UDF) symbol metadata for one subnet’s alpha token, keyed by netuid. The response provides the fields TradingView’s Charting Library needs to render a chart: symbol, description, pricescale, minmovement, session, timezone, has-intraday, has-dwm, and type.

This endpoint is part of the TradingView UDF protocol and is called automatically by a TradingView UDFCompatibleDatafeed instance. Companion endpoints in the same feed:

NameInTypeRequiredDescription
netuidqueryintegerSubnet id whose alpha token symbol you want metadata for.

200 — Symbol info retrieved successfully

Section titled “200 — Symbol info retrieved successfully”

Media: application/json

Schema
{
"type": "object",
"required": [
"symbol",
"description",
"exchange-listed",
"exchange-traded",
"minmovement",
"pricescale",
"has-dwm",
"has-intraday",
"type",
"timezone",
"session",
"session-regular"
],
"properties": {
"description": {
"type": "array",
"items": {
"type": "string"
}
},
"exchange-listed": {
"type": "string"
},
"exchange-traded": {
"type": "string"
},
"has-dwm": {
"type": "boolean"
},
"has-intraday": {
"type": "boolean"
},
"minmovement": {
"type": "integer",
"format": "int32",
"minimum": 0
},
"pricescale": {
"type": "integer",
"format": "int64",
"minimum": 0
},
"session": {
"type": "string"
},
"session-regular": {
"type": "string"
},
"symbol": {
"type": "array",
"items": {
"type": "string"
}
},
"timezone": {
"type": "string"
},
"type": {
"type": "array",
"items": {
"type": "string"
}
}
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

All Taostats API requests require an Authorization header containing your API key. See Getting Started.