TradingView UDF symbol info
Endpoint
Section titled “Endpoint”GET /api/dtao/tradingview/udf/symbol_infoDescription
Section titled “Description”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:
/api/dtao/tradingview/udf/config— datafeed capabilities./api/dtao/tradingview/udf/history— OHLCV bars for a symbol + resolution.
Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
netuid | query | integer | Subnet id whose alpha token symbol you want metadata for. |
Responses
Section titled “Responses”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" } } }}Try it
Section titled “Try it”Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).
Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.