Skip to main content
POST
/
api
/
coinglass
/
spot
/
coins
/coinglass/spot/coins
curl --request POST \
  --url https://api.anysite.io/api/coinglass/spot/coins \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "symbol": "<string>",
    "@type": "@coinglass_spot_coin",
    "name": "<string>",
    "image": "<string>",
    "price": 123,
    "market_cap": 123,
    "volume_usd_24h": 123,
    "buy_volume_usd_24h": 123,
    "sell_volume_usd_24h": 123,
    "net_flow_usd_24h": 123,
    "price_change_percentage_1h": 123,
    "price_change_percentage_4h": 123,
    "price_change_percentage_24h": 123,
    "volume_change_percentage_24h": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Coin ticker symbol

Minimum string length: 1
Example:

"BTC"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

symbol
string
required
@type
string
default:@coinglass_spot_coin
name
string | null
image
string | null
price
number | null
market_cap
number | null
volume_usd_24h
number | null
buy_volume_usd_24h
number | null
sell_volume_usd_24h
number | null
net_flow_usd_24h
number | null
price_change_percentage_1h
number | null
price_change_percentage_4h
number | null
price_change_percentage_24h
number | null
volume_change_percentage_24h
number | null