Welcome to CryptoMeter.io API Documentation

This documentation provides comprehensive information about the CryptoMeter.io API, including available endpoints, usage instructions, and sample responses. Whether you are a developer, analyst, or enthusiast, this guide will help you integrate and use our API efficiently.

Reminder: Keep your API key secure. Do not share it publicly or commit it to public repositories.

Custom API

Free Endpoints and Quota

  • Full access to all free endpoints
  • 10,000 free calls a month

Paid Endpoints and Extra Calls - buy them yourself, no waiting

  • Any single paid endpoint (marked below): $20 for 30 days
  • All endpoints at once: $99 a month
  • Extra calls for the current month: from $0.28 to $0.40 per 1,000, depending on quantity

Buy endpoints or calls → See all API plans

Need an endpoint we don't have yet?

General Info

General API Information

IP Limits / Rate Limits

  • The rate limit is 20 requests per 5 seconds. Premium accounts can request an increase to 50 requests per 5 seconds.
  • The free tier includes 10,000 API calls per month. For users who need additional API calls, charges will be applied.
  • Please refrain from creating multiple accounts to increase your API quota.
  • Need more calls or another paid endpoint? Buy it yourself in Manage API - it applies to your key as soon as payment confirms. For an endpoint we don't offer yet, email [email protected].

Change Log

2026-09-17

  • ath-screener: New endpoint - every tracked coin's distance from its all-time high.
  • gainers-losers: New endpoint - top movers per timeframe (1m to 1mo), one row per coin.
  • funding-rates: New endpoint - live perpetual funding rates across exchanges, annualized.
  • xtrades: symbol and e are now optional - omit both for the latest 100 whale trades across all exchanges, or pass one alone as a filter. Each row now also carries symbol and usd_total.
  • rapid-movements-v2: New endpoint - the 33-type move-detection feed behind the site's Rapid Change page (breakouts, new highs/lows, volume-backed moves, whale trades and more), with optional type/exchange/symbol filters. The original rapid-movements endpoint is unchanged and stays free.

2025-08-31

  • All indicators now use the standardized pair format (BASE-QUOTE, e.g., BTC-USDT).

2025-08-09

  • indicator-stoch: New endpoint introduced

2025-08-05

  • indicator-stochrsi: New endpoint introduced

2025-05-03

  • liquidity-lens: New endpoint introduced

2024-05-14

  • volume-flow: Endpoint updated

Market List

Our platform provides two types of cryptocurrency pairs: standardized pairs and market pairs. Standardized pairs are formatted according to the CryptoMeter standard, such as BTC-USD, while market pairs are formatted according specific cryptocurrency exchanges.

GET
/coinlist/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/coinlist/?e=binance&api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": [ { "pair": "1000CAT-BNB", // - standardized canonical format BASE-QUOTE with a hyphen (e.g., BTC-USDT) "market_pair": "1000CATBNB" // - exchange-native symbol; varies by exchange (e.g., BTCUSDT, BTC/USDT) }, { "pair": "1000CAT-FDUSD", "market_pair": "1000CATFDUSD" } ] }

Cryptocurrency Info

Our Cryptocurrency Info API endpoint offers detailed information on a wide range of crypto assets, including filters for various algorithms such as defi, stablecoin, pow, and many others. This data can help users gain a deeper understanding of individual cryptocurrencies, including key metrics such as circulate supply, trading volume, and price movements.

GET
/cryptocurrency-info/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
filter STRING YES Algorithm filters supported (defi, pow, mineable, stablecoin, privacy, filesharing, all) defi
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/cryptocurrency-info/?e=binance&filter=defi&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "name":"Chainlink", // Name Of the coin/token "pair":"LINK-USDT", // pair name at cryptometer.io "market_pair":"LINKUSDT", // pair name at exchange "total_supply":"1000000000", // total supply of the coin/token "circulate_supply":"394509556.43444", // circulating supply of the coin/token "price":"13.97710000", // last price "high":"14.14820000", // 24h high "low":"13.45010000", // 24h low "volume":71636181.74, // 24h volume "change_24h":1.73, // 24h change in % "change_1h":0.36, // 1 hour change in % "change_7d":-1.63, // 7 day change in % "change_30d":29.58 // 30 day change in % }, { "name":"yearn.finance", "pair":"YFI-USDT", "market_pair":"YFIUSDT", "total_supply":"30000", "circulate_supply":"29967.75773773", "price":"30044.05000000", "high":"31780.41000000", "low":"28393.81000000", "volume":162827379.97, "change_24h":5.66, "change_1h":-0.37, "change_7d":34.23, "change_30d":196.92 } ] }

Coin Info

Get detailed information about individual cryptocurrencies including market cap, total supply, circulating supply, and current price in USD.

GET
/coininfo/

Parameters:

Name Type Mandatory Description Example
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/coininfo/?api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": [ { "symbol": "BTC", "name": "Bitcoin", "totalSupply": 21000000, "circulatingSupply": 19859362, "marketCap": 1914370676946.32, // market cap in USD "price": 96396.3835769912 // price in USD }, { "symbol": "ETH", "name": "Ethereum", "totalSupply": 120732669.81732, "circulatingSupply": 120732669.81732, "marketCap": 220714277242.92, "price": 1828.12388375806 } ] }

Tickers of Exchange

Our Tickerlist API endpoint provides real-time pricing data for multiple cryptocurrencies, including high, low, and volume metrics.

GET
/tickerlist/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/tickerlist/?e=binance&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "pair":"1000CAT-BNB", "market_pair":"USD-BTC", "last":"7301.136", "high":"7794.172", "low":"7085.034", "volume_24":7020059.09, "change_24h":2.33, "change_1h":0.15, "change_7days":-3.03 } ] }

Tickers of Exchange PRO

Our Tickerlist Pro API endpoint offers a comprehensive set of data on multiple cryptocurrencies, including pricing data in USD, year-to-date (YTD) change, 90-day change, and much more.

GET
/tickerlist-pro/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/tickerlist-pro/?e=coinbase_pro&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "market_pair":"BTC/EUR", // exchange pair "symbol":"BTC", "pair":"BTC-EUR", // Standardized CryptoMeter style Pair "price":34500.01, // price in quote currency "usd_price":34578.49896, // price in USD "high":36139.73, "low":33347.05, "volume_24":747852607.88, // volume in quote currency "change_24h":-2.81, // change in % "change_1h":0.21, // change in % "change_7d":-14.88, // change in % "change_30d":-7.93, // change in % "change_90d":-36.51, // change in % "change_ytd":17.32 // year to date change in % } ] }

Single Ticker

Our Ticker API endpoint provides real-time pricing data for individual cryptocurrencies.

GET
/ticker/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
market_pair STRING YES Trading pair BTC-USDT
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ticker/?e=binance&market_pair=BTC-USDT&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "market_pair":"USD-BTC", "last":"7301.136", "high":"7794.172", "low":"7085.034", "volume_24":7020059.09, "change_24h":2.33, "change_1h":0.15, "change_7days":-3.03 } ] }

Trend Indicator V3

Get trend analysis with buy/sell pressure indicators and market sentiment scores.

GET
/trend-indicator-v3/

Parameters:

Name Type Mandatory Description Example
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/trend-indicator-v3/?api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "trend_score":38.64, "buy_pressure":50.55, "sell_pressure":49.45, "timestamp":"2020-05-02T12:56:00.000Z" } ] }

Forex Rates

Supports 150+ Forex Currencies. Updates every 12 hours. Get exchange rates for major global currencies.

GET
/forex-rates/

Parameters:

Name Type Mandatory Description Example
source STRING YES Currency code like USD, EUR, INR etc. USD
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/forex-rates/?source=USD&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "symbol":"CNY", "rate":6.762803 }, { "symbol":"INR", "rate":79.907498 }, { "symbol":"JPY", "rate":137.920749 }, { "symbol":"KRW", "rate":1313.140274 }, { "symbol":"RUB", "rate":56.524986 }, { "symbol":"USD", "rate":1 } ] }

AI Screener

Returns AI Screener trades with entry prices, PNL data, and trade status for algorithmic trading insights.

GET
/ai-screener/

Parameters:

Name Type Mandatory Description Example
type STRING NO Data range: latest (last 12 hours) or full (last month) latest
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ai-screener/?api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": [ { "pair": "HEART-USDT", "symbol": "HEART", "exchange": "kucoin", "entry_price": 0.009811, // Price at which the trade was entered. "price_reached": 0.010645, // Highest (or lowest) price reached from the entry point. "pnl": 8.5, // Profit or loss calculated from the entry price and price reached. "side": "BUY", // Indicates the side of the trade (BUY/SELL). "entry_time": "2023-08-08T21:13:00.000Z", // Time at which the trade was entered. "status": "open" // Possible values: OPEN (still being monitored), CLOSED (trade closed, final PNL updated). } ] }

AI Screener Analysis

Get AI Screener analysis with success ratio and historical trade performance for specific symbols.

GET
/ai-screener-analysis/

Parameters:

Name Type Mandatory Description Example
symbol STRING YES Symbol name (e.g., BTC) BTC
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ai-screener-analysis/?symbol=FUN&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":{ "ratio":"80.00", "trades":[ { "pair":"FUN-USDT", "symbol":"FUN", "exchange":"binance", "entry_price":0.005771, "price_reached":0.006288, "pnl":8.96, "side":"BUY", "entry_time":"2024-02-22T05:58:00.000Z", "status":"closed" } ] } }

LS Ratio Data

Get Long/Short ratio data with buy/sell percentages and delta values for futures markets.

GET
/ls-ratio/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of the Exchange (bitmex, binance_futures, bybit, deribit) binance_futures
pair STRING YES Trading pair btc-usdt
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ls-ratio/?e=binance_futures&pair=btc-usdt&timeframe=4h&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "ratio":"0.95", "buy":"48.65", "sell":"51.35", "close":26996.73, "delta":-475.15999999999985 } ] }

Total Liquidation Data in Detailed

24-hour liquidation data expressed in US dollars ($) with detailed breakdown by exchange.

GET
/liquidation-data-v2/

Parameters:

Name Type Mandatory Description Example
symbol STRING YES Symbol name (e.g., BTC) btc
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/liquidation-data-v2/?symbol=btc&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "binance_futures":{ "longs":6556449.80143, "shorts":8546450.39233 }, "bitfinex":{ "longs":177375.14674178, "shorts":50304.36069142 }, "bitmex":{ "longs":16134555, "shorts":6367904 } } ] }

Rapid Movements

Data on assets experiencing rapid upward price movements. Returns last 4 hours of data for real-time market monitoring.

GET
/rapid-movements/

Parameters:

Name Type Mandatory Description Example
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/rapid-movements/?api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "pair":"WLO-USD", "exchange":"bitfinex", "change_detected":5.17, "side":"PUMP", "timestamp":"2019-12-11T11:18:15.000Z" } ] }

Rapid Movements V2

The richer move-detection feed behind the site's own Rapid Change page: 33 move types across price, new highs/lows, short/medium-term rises and falls, volume-backed moves, range breakouts, a volatility surge signal, and single large whale trades. Up to 500 rows, newest first - 100 if any of the three filters below is used. All three filters are optional and can be combined; omit all three for the full feed. type must be one of the type ids in the table below - the literal value all is not accepted, just omit the parameter.

GET
/rapid-movements-v2/

Parameters:

Name Type Mandatory Description Example
type STRING NO One move type id from the table below. Omit for every type. breakout24hUp
e STRING NO Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx). Omit for all exchanges. binance
symbol STRING NO Symbol (btc, eth, sol). Omit for all symbols. btc
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/rapid-movements-v2/?api_key=YOUR_API_KEY
Sample URL (filtered):
https://api.cryptometer.io/rapid-movements-v2/?type=breakout24hUp&e=binance&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "pair":"BTC-USDT", "symbol":"BTC", "exchange":"binance", "type":"breakout24hUp", // one of the Move Types below, matches the type filter "direction":"up", // 'up' or 'down' "is_money":false, // true if value is currency, false if its percentage "value":2.13, // percentage (2dp) unless is_money is true, then a USD amount "change_1h_percent":-0.27, "change_24h_percent":12.26, "timestamp":"2026-09-17T12:03:02.671Z" // when the move was detected } ] }

Move Types (type= values):

type= Label Group Direction
rally Rally Price Up
pullback Pullback Price Down
newHigh6h New 6h High Highs Up
newHigh24h New 24h High Highs Up
newHigh7d New 7-Day High Highs Up
newHigh30d New 30-Day High Highs Up
newLow6h New 6h Low Lows Down
newLow24h New 24h Low Lows Down
newLow7d New 7-Day Low Lows Down
newLow30d New 30-Day Low Lows Down
smallRise5Min Small Rise (5 Min) Short Term (5 Min) Up
midRise5Min Mid Rise (5 Min) Short Term (5 Min) Up
highRise5Min High Rise (5 Min) Short Term (5 Min) Up
smallFall5Min Small Fall (5 Min) Short Term (5 Min) Down
midFall5Min Mid Fall (5 Min) Short Term (5 Min) Down
highFall5Min High Fall (5 Min) Short Term (5 Min) Down
smallRise2Hours Small Rise (2h) Medium Term (2h) Up
midRise2Hours Mid Rise (2h) Medium Term (2h) Up
highRise2Hours High Rise (2h) Medium Term (2h) Up
smallFall2Hours Small Fall (2h) Medium Term (2h) Down
midFall2Hours Mid Fall (2h) Medium Term (2h) Down
highFall2Hours High Fall (2h) Medium Term (2h) Down
midVolumePriceIncrease Mid-Volume Price Increase Volume + Price Up
midVolumePriceDecrease Mid-Volume Price Decrease Volume + Price Down
highVolumePriceIncrease High-Volume Price Increase Volume + Price Up
highVolumePriceDecrease High-Volume Price Decrease Volume + Price Down
breakout24hUp 24h Range Breakout Breakouts Up
breakout24hDown 24h Range Breakdown Breakouts Down
breakout30dUp 30-Day Range Breakout Breakouts Up
breakout30dDown 30-Day Range Breakdown Breakouts Down
volatility15h Volatility + Volume Surge (15h) Volatility Up
whaleTradeBuy Whale Buy Whale Trades Up
whaleTradeSell Whale Sell Whale Trades Down

24h Trading Volume

24 hours of buy/sell volume data for trading analysis.

GET
/24h-trade-volume-v2/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Name of exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/24h-trade-volume-v2/?pair=BTC-USDT&e=binance&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "buy":52550.757832, "sell":49059.904543 } ] }

Open Interest

Open Interest data in USD for futures trading markets.

GET
/open-interest/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of Exchange (bitmex, binance_futures, bybit, deribit) binance_futures
market_pair STRING YES Trading pair xbtusd
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/open-interest/?market_pair=xbtusd&e=bitmex&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "open_interest":284233058 } ] }

OHLCV Candles

OHLCV candlestick data with volume breakdown and trade count information.

GET
/ohlcv/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
pair STRING YES Trading pair BTC-USDT
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ohlcv/?e=binance&pair=BTC-USDT&timeframe=d&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "timestamp":"2021-05-29T00:00:00.000Z", "open":35661.79, "high":37338.58, "low":35604.3, "close":36958.95, "volume":830171905.88, // volume in quote currency eg.USDT "buy":11352.22, // buy volume in base currency eg.BTC "sell":11476.07, // sell volume in base currency eg.BTC "buy_total":412970773.11, // buy volume in quote currency eg.USDT "sell_total":417201132.77, // sell volume in quote currency eg.USDT "tradecount":103004 // total number of trades } ] }

Technical Indicators

SMA - Simple Moving Average

Simple Moving Average (SMA) indicator that calculates the average price over a specified period.

GET
/indicator-sma/

Parameters (SMA Example):

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
source STRING YES Supported sources: open, close, high, low, volume close
period INTEGER YES Period (must be less than 300) 14
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-sma/?pair=BTC-USDT&e=binance&timeframe=d&source=close&period=14&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 6437.404285714286, 6613.859285714285, 6820.522857142857, 7060.174285714286, 7305.874285714287 ] ] }

EMA - Exponential Moving Average

Exponential Moving Average (EMA) indicator that gives more weight to recent prices.

GET
/indicator-ema/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
source STRING YES Supported sources: open, close, high, low, volume close
period INTEGER YES Period (must be less than 300) 21
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-ema/?pair=BTC-USDT&e=binance&timeframe=d&source=close&period=21&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 6521.234567890123, 6698.567890123456, 6890.123456789012, 7125.456789012345, 7389.789012345678 ] ] }

RSI - Relative Strength Index

Relative Strength Index indicator that measures the speed and change of price movements (0-100 range).

GET
/indicator-rsi/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 1h
source STRING YES Supported sources: open, close, high, low, volume close
period INTEGER YES Period (must be less than 300) 14
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-rsi/?pair=BTC-USDT&e=binance&timeframe=1h&source=close&period=14&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 45.23, 52.17, 68.94, 71.82, 69.15, 58.42, 41.73 ] ] }

Stochastic RSI

Stochastic RSI indicator that measures the speed and change of price movements (0-100 range).

GET
/indicator-stochrsi/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
source STRING YES Supported sources: open, close, high, low, volume close
rsi_period INTEGER YES RSI period 14
stoch_period INTEGER YES Stochastic period 14
k_period INTEGER YES K period 3
d_period INTEGER YES D period 3
Sample URL:
https://api.cryptometer.io/indicator-stochrsi/?pair=BTC-USDT&e=binance&timeframe=d&source=close&rsi_period=14&stoch_period=14&k_period=3&d_period=3&api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": { "k_percent": [84.1767108288932, 91.9812133263309, 96.6081198448009, 96.1397028272787, 83.6965981084237], "d_percent": [77.6795262912477, 83.9141194532381, 90.922014666675, 94.9096786661368, 92.1481402601678] } }

Stochastic Oscillator

Stochastic Oscillator indicator that measures momentum by comparing a closing price to its price range over a specific period (0-100 range).

GET
/indicator-stoch/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
k_period INTEGER YES Main calculation period for %K 14
k_slowing_period INTEGER YES Smoothing period for %K line 1
d_period INTEGER YES Smoothing period for %D line 3
Sample URL:
https://api.cryptometer.io/indicator-stoch/?pair=BTC-USDT&e=binance&timeframe=d&source=close&k_period=14&k_slowing_period=1&d_period=3&api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": { "k_percent": [84.1767108288932, 91.9812133263309, 96.6081198448009, 96.1397028272787, 83.6965981084237], "d_percent": [77.6795262912477, 83.9141194532381, 90.922014666675, 94.9096786661368, 92.1481402601678] } }

MACD - Moving Average Convergence Divergence

Moving Average Convergence Divergence (MACD) indicator that shows the relationship between two moving averages of prices.

GET
/indicator-macd/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
source STRING YES Supported sources: open, close, high, low, volume close
long_period INTEGER YES Long EMA period 26
short_period INTEGER YES Short EMA period 12
signal_period INTEGER YES Signal line period 9
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-macd/?pair=BTC-USDT&e=binance&timeframe=d&source=close&long_period=26&short_period=12&signal_period=9&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":{ "macd": [125.34, 142.78, 118.92, 95.67], "macd_signal": [108.45, 135.21, 128.67, 112.34], "macd_histogram": [16.89, 7.57, -9.75, -16.67] } }

ATR - Average True Range

Average True Range indicator that measures market volatility.

GET
/indicator-atr/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
period INTEGER YES Period (e.g., 14) 14
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-atr/?pair=BTC-USDT&e=binance&timeframe=d&period=14&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 1234.56, 1456.78, 1189.34, 1567.92, 1398.45 ] ] }

CCI - Commodity Channel Index

Commodity Channel Index indicator that measures the deviation of the typical price from its average.

GET
/indicator-cci/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
period INTEGER YES Period (must be less than 300) 20
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-cci/?pair=BTC-USDT&e=binance&timeframe=d&period=20&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 45.23, 125.67, -89.34, -156.78, 98.45, 67.12, -45.89 ] ] }

PSAR - Parabolic SAR

Parabolic SAR indicator that provides potential reversal points in price direction.

GET
/indicator-psar/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
source STRING YES Source (open, high, low, close) close
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 1h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-psar/?pair=BTC-USDT&e=binance&timeframe=d&source=close&period=50&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 1847.23, 1851.45, 1845.67, 1842.89, 1838.12, 1834.56 ] ] }

Supertrend Indicator

Supertrend indicator that provides buy/sell signals based on ATR and price movements.

GET
/indicator-supertrend/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
period INTEGER YES ATR period 10
multiplier FLOAT YES Multiplier for ATR 3
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-supertrend/?pair=BTC-USDT&e=binance&timeframe=d&period=10&multiplier=3&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":{ "trend":[ { "time":"2024-09-11T00:00:00.000Z", "close":2340.55, "supertrend":2731.345, "direction":"down" }, { "time":"2024-09-12T00:00:00.000Z", "close":2361.76, "supertrend":2731.345, "direction":"down" }, { "time":"2024-09-13T00:00:00.000Z", "close":2439.19, "supertrend":2731.345, "direction":"down" } ] } }

VWAP - Volume Weighted Average Price

Volume Weighted Average Price indicator that shows the average price weighted by volume.

GET
/indicator-vwap/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) d
period INTEGER YES Period for calculation 1
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-vwap/?pair=BTC-USDT&e=binance&timeframe=d&period=1&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [ 43567.89, 43789.12, 44012.45, 44234.78, 44456.23 ] ] }

MFI - Money Flow Index

Money Flow Index indicator that measures the strength of money flowing into and out of a security.

GET
/indicator-mfi/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
period INTEGER YES Period (must be less than 300) 20
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-mfi/?pair=BTC-USDT&e=binance&timeframe=d&period=14&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ [47.475879804741, 57.2287510360905, 65.4575225033172, 76.6785570382222, 77.6439723422753, 77.7964914409159, 77.7060305875453] ] }

BBANDS - Bollinger Bands

Bollinger Bands indicator that measures the volatility of a security.

GET
/indicator-bbands/

Parameters:

Name Type Mandatory Description Example
pair STRING YES Trading pair BTC-USDT
e STRING YES Exchange name (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
period INTEGER YES Period (must be less than 300) 20
std_dev INTEGER YES Standard Deviation (must be less than 10) 5
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/indicator-bbands/?pair=BTC-USDT&e=binance&timeframe=d&period=14&stddev=5&api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": { "lower": [47771.0667095125, 47225.947547608, 46142.2315092526, 45144.3606575203, 45846.6119696337], "middle": [57329.8385714286, 57531.7142857143, 57802.3635714286, 58285.7914285714, 58945.6542857143], "upper": [66888.6104333447, 67837.4810238206, 69462.4956336045, 71427.2221996226, 72044.6966017949] } }

Live Trades

Real-time trade updates with buy/sell quantities across multiple timeframes for comprehensive market analysis.

GET
/live-trades/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
pair STRING YES Trading pair btc-usdt
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/live-trades/?e=binance&pair=btc-usdt&api_key=YOUR_API_KEY
{ "success":"true", "data":[ { "24h":{ "buy_quantity":63430.818, "sell_quantity":68774.903 }, "1h":{ "buy_quantity":2569.928, "sell_quantity":2234.597 }, "30m":{ "buy_quantity":703.442, "sell_quantity":734.313 }, "15m":{ "buy_quantity":413.693, "sell_quantity":442.004 } } ] }

Volume Flow

Volume flow analysis showing liquidity movements across different cryptocurrencies and timeframes.

GET
/volume-flow/

Parameters:

Name Type Mandatory Description Example
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/volume-flow/?timeframe=4h&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":{ "inflow":[ { "from":"USDT", "to":"BTC", "volume":6317235.826112411 }, { "from":"FDUSD", "to":"BTC", "volume":5061496.5612776 } ], "outflow":[ { "from":"BTC", "to":"USDT", "volume":7382180.628616273 } ], "netflow":[ { "from":"USD", "to":"DOGE", "volume":1388303.4983642981 } ] } }

Liquidity Lens

Advanced liquidity analysis showing inflow, outflow, and netflow for major cryptocurrencies across different timeframes.

GET
/liquidity-lens/

Parameters:

Name Type Mandatory Description Example
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d, 3d, w) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/liquidity-lens/?timeframe=4h&api_key=YOUR_API_KEY
{ "success": "true", "error": "false", "data": { "BTC": { "inflow": 310128813.02, "outflow": 467085565.07, "netflow": -156956752.05 }, "ETH": { "inflow": 157973288.83, "outflow": 163538803.58, "netflow": -5565514.75 }, "USDC": { "inflow": 109796591.54, "outflow": 59622570.46, "netflow": 50174021.08 } } }

Aggregated Order Book

Aggregated order book data showing total bids and asks values in BTC across multiple exchanges.

GET
/merged-orderbook/

Parameters:

Name Type Mandatory Description Example
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/merged-orderbook/?api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "symbol":"BTC", "bids":1263.37, "asks":1481.62 } ] }

xTrades - Whale Trades

Data on executed large trades made by whales - investors who make large trades that can significantly impact the market. Provides valuable insights into market trends and investor behavior. Both filters are optional: call it with just your key for the latest 100 whale trades across every exchange, or narrow by exchange, by symbol, or both (up to 400 rows when both are given).

GET
/xtrades/

Parameters:

Name Type Mandatory Description Example
e STRING NO Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx). Omit for all exchanges. binance
symbol STRING NO Symbol (btc, xbt, eth, xrp). Omit for all symbols. btc
api_key STRING YES API Key YOUR_API_KEY
Sample URL (latest 100, all exchanges):
https://api.cryptometer.io/xtrades/?api_key=YOUR_API_KEY
Sample URL (one symbol on one exchange):
https://api.cryptometer.io/xtrades/?symbol=btc&e=binance&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "u_id":187723, "pair":"BTC-USDT", "symbol":"BTC", "exchange":"binance", "price":36500, "size":19.999999, "total":729999.9635, "usd_total":729999.9635, "side":"SELL", "timestamp":"2021-05-29T04:30:05.000Z" } ] }

ATH Screener

Every tracked coin ranked by 24h volume with its current price, all-time high, ATH date and drawdown from that high. One row per coin, represented by its highest-volume dollar-quoted pair on a supported exchange; stablecoins are excluded. new_ath flags a high printed within the last 7 days. Up to 500 rows. Pass symbol for a single coin.

GET
/ath-screener/

Parameters:

Name Type Mandatory Description Example
symbol STRING NO Symbol (btc, eth, sol). Omit for every coin. btc
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/ath-screener/?api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "symbol":"BTC", "name":"Bitcoin", "exchange":"binance", "pair":"BTC-USDT", "price":112450.5, "ath_price":126198.07, "ath_date":"2025-10-06", "drawdown_percent":10.89, "change_24h_percent":-1.42, "volume_usd_24h":2154031200.55, "new_ath":false } ] }

Gainers & Losers

The biggest movers over a timeframe, as two ranked lists: the top 100 gainers and the top 100 losers. One row per coin, represented by its highest-volume dollar-quoted pair, so a coin's most liquid market decides its move rather than an illiquid listing. Pairs under $50k 24h volume and stablecoins are excluded. pair_count is how many qualifying pairs the coin has across exchanges. Timeframes: 1m, 5m, 15m, 30m, 1h, 1d, 1w, 1mo (1m is one minute, 1mo one month).

GET
/gainers-losers/

Parameters:

Name Type Mandatory Description Example
timeframe STRING YES 1m, 5m, 15m, 30m, 1h, 1d, 1w, 1mo 1h
e STRING NO Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx). Omit for all exchanges. binance
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/gainers-losers/?timeframe=1h&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":{ "timeframe":"1h", "gainers":[ { "rank":1, "symbol":"SOL", "name":"Solana", "exchange":"binance", "pair":"SOL-USDT", "price_usd":231.84, "change_percent":6.12, "change_24h_percent":9.87, "volume_usd_24h":812004311.2, "pair_count":14 } ], "losers":[ { "rank":1, "symbol":"XRP", "name":"XRP", "exchange":"binance", "pair":"XRP-USDT", "price_usd":2.91, "change_percent":-3.44, "change_24h_percent":-5.02, "volume_usd_24h":655120044.9, "pair_count":11 } ] } }

Funding Rates

The live funding rate of every tracked perpetual contract, refreshed every few minutes. rate is the per-interval rate as a fraction (0.0001 = 0.01%), annualized_percent uses each contract's own settlement interval (hourly on Hyperliquid, 8h on most venues), so rates are comparable across exchanges. Rows are ordered by absolute annualized rate, extremes first. Filter by exchange, by symbol, or both.

GET
/funding-rates/

Parameters:

Name Type Mandatory Description Example
e STRING NO Exchange id (binance_futures, bybit, hyperliquid, deribit, ...). Omit for all exchanges. binance_futures
symbol STRING NO Symbol (btc, eth, sol). Omit for every contract. btc
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/funding-rates/?symbol=btc&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "symbol":"BTC", "pair":"BTC-USDT", "exchange":"binance_futures", "rate":0.0001, "rate_percent":0.01, "interval_hours":8, "annualized_percent":10.95, "next_funding_at":"2026-09-17T16:00:00.000Z", "mark_price":112448.1 } ] }

Volatility Index

Volatility analysis showing price movements, average prices, percentage changes, and volume data across different timeframes.

GET
/volatility-index/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of Exchange (bitmex, binance, binance_futures, bybit_spot, bybit, coinbase_pro, kraken, bitstamp, bitfinex, deribit, binance_us, kucoin, bithumb, okx) binance
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/volatility-index/?e=binance&timeframe=4h&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "pair":"COMP-TUSD", "volatility":"1.267", "price":"96.64", "avg_price":"91.3475", "change":"1.641", "volume":"3657.14", "volume_change":"38.321" }, { "pair":"SPELL-USDT", "volatility":"1.088", "price":"0.0010622", "avg_price":"0.0010207", "change":"8.565", "volume":"1660860.31", "volume_change":"468.268" } ] }

Long/Shorts Data

Long and short positions data across different timeframes for futures trading analysis.

GET
/long-shorts-data/

Parameters:

Name Type Mandatory Description Example
e STRING YES Name of Exchange (bitmex, binance_futures, bybit, deribit) binance_futures
symbol STRING YES Symbol (e.g., xbt) xbt
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/long-shorts-data/?e=binance_futures&symbol=xbt&timeframe=4h&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "longs":423000, "shorts":4767000, "timestamp":"2023-05-13T04:00:00.000Z" } ] }

Merged Buy/Sell Volume - X Timeframe

Merged buy and sell volumes for specified timeframes. Combines volume data from different pairs and exchanges for comprehensive market trend analysis.

GET
/merged-trade-volume/

Parameters:

Name Type Mandatory Description Example
symbol STRING YES Symbol (e.g., btc) btc
timeframe STRING YES Available timeframes (5m, 15m, 30m, 1h, 4h, d) 4h
exchange_type STRING YES Exchange type (spot, futures) spot
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/merged-trade-volume/?symbol=btc&timeframe=4h&exchange_type=spot&api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "buy":15371.03, "sell":15802.35 } ] }

API Usage Information

Get details about your API account including plan, quota, usage statistics, and available endpoints.

GET
/info/

Parameters:

Name Type Mandatory Description Example
api_key STRING YES API Key YOUR_API_KEY
Sample URL:
https://api.cryptometer.io/info/?api_key=YOUR_API_KEY
{ "success":"true", "error":"false", "data":[ { "plan":"PAID", "subscription_expiry":"2021-09-27T00:00:00.000Z", "counter_reset":"2021-07-26T00:00:00.000Z", "quota":10000, "total_requests":12, "status":"active", "extra_endpoints":[ "ohlcv", "xtrades", "ls-ratio", "live-trades", "volume-flow", "indicator-atr", "indicator-cci", "indicator-ema", "indicator-rsi", "indicator-sma", "indicator-macd", "indicator-psar", "tickerlist-pro", "cryptocurrency-info", "liquidation-data-v2", "merged-trade-volume" ] } ] }