Skip to main content
POST
/
api
/
coinglass
/
coins
/
search
/coinglass/coins/search
curl --request POST \
  --url https://api.anysite.io/api/coinglass/coins/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "",
  "sort": "openInterest",
  "order": "desc"
}
'
[
  {
    "symbol": "<string>",
    "@type": "@coinglass_market_coin",
    "image": "<string>",
    "price": 123,
    "market_cap": 123,
    "open_interest": 123,
    "open_interest_amount": 123,
    "oi_market_cap_ratio": 123,
    "oi_volume_ratio": 123,
    "volume_usd": 123,
    "avg_funding_rate_by_oi": 123,
    "avg_funding_rate_by_volume": 123,
    "long_short_ratio_1h": 123,
    "long_short_ratio_4h": 123,
    "long_short_ratio_24h": 123,
    "price_change_percentage_1h": 123,
    "price_change_percentage_4h": 123,
    "price_change_percentage_24h": 123,
    "price_change_percentage_7d": 123,
    "oi_change_percentage_1h": 123,
    "oi_change_percentage_4h": 123,
    "oi_change_percentage_24h": 123,
    "volume_change_percentage_1h": 123,
    "volume_change_percentage_4h": 123,
    "volume_change_percentage_24h": 123,
    "liquidation_usd_1h": 123,
    "liquidation_usd_4h": 123,
    "liquidation_usd_24h": 123,
    "long_liquidation_usd_24h": 123,
    "short_liquidation_usd_24h": 123,
    "rsi_15m": 123,
    "rsi_1h": 123,
    "rsi_4h": 123,
    "rsi_12h": 123,
    "rsi_1d": 123,
    "rsi_1w": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of coins to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string
default:""

Filter coins by ticker symbol

exchange
enum<string> | null

Restrict figures to a single exchange; omit for the aggregated market

Available options:
Binance,
OKX,
Bybit,
Crypto.com,
Gate,
Bitget,
BingX,
MEXC,
Bitunix,
Hyperliquid,
dYdX,
Deribit,
Bitfinex,
Bitmex,
CoinEx,
Kraken,
Coinbase,
HTX
sort
enum<string>
default:openInterest

Field to rank coins by

Available options:
openInterest,
h24VolUsd,
h24PriceChangePercent,
d7PriceChangePercent,
h1OiChangePercent,
h4OiChangePercent,
h24OiChangePercent,
h24LiquidationUsd,
avgFundingRateByOi,
h1Ls,
marketCap,
rsi4h
order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc

Response

Successful Response

symbol
string
required
@type
string
default:@coinglass_market_coin
image
string | null
price
number | null
market_cap
number | null
open_interest
number | null
open_interest_amount
number | null
oi_market_cap_ratio
number | null
oi_volume_ratio
number | null
volume_usd
number | null
avg_funding_rate_by_oi
number | null
avg_funding_rate_by_volume
number | null
long_short_ratio_1h
number | null
long_short_ratio_4h
number | null
long_short_ratio_24h
number | null
price_change_percentage_1h
number | null
price_change_percentage_4h
number | null
price_change_percentage_24h
number | null
price_change_percentage_7d
number | null
oi_change_percentage_1h
number | null
oi_change_percentage_4h
number | null
oi_change_percentage_24h
number | null
volume_change_percentage_1h
number | null
volume_change_percentage_4h
number | null
volume_change_percentage_24h
number | null
liquidation_usd_1h
number | null
liquidation_usd_4h
number | null
liquidation_usd_24h
number | null
long_liquidation_usd_24h
number | null
short_liquidation_usd_24h
number | null
rsi_15m
number | null
rsi_1h
number | null
rsi_4h
number | null
rsi_12h
number | null
rsi_1d
number | null
rsi_1w
number | null