GET: Multi-Timeframe Technical Analysis
Retrieve multi-interval technical analysis (TA) data for specified tokens using token IDs, addresses, or tickers. This endpoint returns key indicators such as support and resistance levels, RSI (Relative Strength Index), and SMA (Simple Moving Average) across various timeframes, enabling data-driven trading decisions and trend analysis.
Endpoint:
GET: /token-ta
Query Parameters:
Parameter name
Type
Mandatory
Description
api_key
string
Yes
Your unique Loky API key used for authentication
chain
string
Yes
The network chain to query. Values base
token_tickers
string
No
Comma-separated token tickers to fetch info
token_addresses
string
No
Comma-separated token contract addresses to fetch info
token_ids
string
No
Comma-separated token ids to fetch info
Sample cURL Requests:
Sample Response:
Response Fields Explanation:
token_id
(string): Identifier of the token, typically matching the input (e.g.,rocket-pool-eth
).technical_indicators
(object): Contains multi-interval technical analysis metrics for the token.support_{interval}
(string): Calculated support level for the specified time interval.resistance_{interval}
(string): Calculated resistance level for the specified time interval.rsi_{interval}
(string): Relative Strength Index (RSI), indicating momentum and overbought/oversold conditions for the interval.sma_{interval}
(string): Simple Moving Average (SMA), showing average price over the interval.Available intervals:
1m
= 1 minute5m
= 5 minutes15m
= 15 minutes1h
= 1 hour4h
= 4 hours1d
= 1 day1w
= 1 week
last_updated_at
(string): ISO timestamp of the last data update.
Last updated
Was this helpful?