Multi-Interval 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 for following time intervals:
5 minutes
15 minutes
1 hour
4 hours
1 day (24 hours)
1 week
Endpoint
GET https://api.dapplooker.com/v1/token-ta
💡 Pro Tips
This endpoint returns a maximum of 30 items per page. Use
page
query parameter to navigate through results.You can fetch data of tokens directly by specifying the
chain
andecosystem
—no need to pass individual token addresses, ids or tickers.To retrieve data for specific token(s), use the
token_addresses
,token_ids
ortoken_tickers
query parameter.
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. Supported chains: base, solana
token_tickers
string
No
Comma-separated token tickers (upto 30) to fetch info
token_addresses
string
No
Comma-separated token contract addresses (upto 30) to fetch info
token_ids
string
No
Comma-separated token IDs (upto 30) to fetch info
ecosystem
string
No
Specific ecosystem tokens to query. Supported ecosystem: virtuals
page
string
No, Default page 1
Page number, 30 items per page.
Sample Request
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
token_metrics
(object): Contains multi-interval market change metrics for the token.price_change_percentage_{interval}
(string): Price change percentage for specified time interval.Available intervals:
1m
= 1 minute5m
= 5 minutes15m
= 15 minutes1h
= 1 hour4h
= 4 hours1d
= 1 day1w
= 1 week30d
= 30 days
last_updated_at
(string): ISO timestamp of the last data update.
Last updated
Was this helpful?