Coin Trends
Retrieve a list of trending coins based on a given time period (last 30 minutes, 1 hour, 6 hours, 24 hours).
The formular of trending coin please contact: @hiephho
Endpoint
POST /api/v1/partner/coin-trendingRequest Body
Parameters
pagination
object
No
Pagination
├─ limit
number
No
Max number of items to return. Default: 20, Max: 200.
└─ offset
number
No
Index to start the results from. Default: 0.
score_period
string
Yes
Period trending score. Choices are: 30m, 1h, 4h, 6h 24h.
filters
object
No
Filters
└─ coin_ids
string[]
No
Array of coin_id to filter (use to filter favorite coins).
Example
{
"pagination": {
"limit": 10,
"offset": 0
},
"score_period": "24h",
"filters": {
"coin_ids": [
"0x32a976482bf4154961bf20bfa3567a80122fdf8e8f8b28d752b609d8640f7846::miu::MIU",
"0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP"
]
}
}Headers
x-api-key
No
API key for authentication.
Response Body
Fields
data
array
List of trending coin objects.
├─ coin_type
string
Coin Identifier
├─ name
string
Name of the coin.
├─ symbol
string
Symbol of the coin.
├─ logo
string
URL to the coin's logo.
├─ price
number
Current price of the coin.
├─ price_change_1d
number
% price change in the last 24 hours.
├─ price_change_6h
number
% price change in the last 6 hours.
├─ price_change_4h
number
% price change in the last 4 hours.
├─ price_change_1h
number
% price change in the last hour.
├─ price_change_30m
number
% price change in the last 30 minutes.
├─ vol_change_1d
number
% volume change in the last 24 hours.
├─ liq_change_1d
number
% liquidity of coin (usd) change in the last 24 hours.
├─ tx_change_1d
number
% Number of transactions change in the last 24 hours.
├─ tx_24h
number
Number of transactions in 24h.
├─ volume_24h
number
Trading volume in 24h.
├─ volume_6h
number
Trading volume in 6h.
├─ volume_4h
number
Trading volume in 4h.
├─ volume_1h
number
Trading volume in 1h.
├─ volume_30m
number
Trading volume in 30 minutes.
├─ maker_24h
number
Number of makers in 24h.
├─ market_cap
string
Market cap.
├─ liquidity_usd
string
Liquidity in USD.
├─ circulating_supply
string
Circulating supply.
├─ total_supply
string
Total coin supply.
├─ published_at
string
Created time of the coin (RFC3339 format).
├─ verified
boolean
Indicates if the coin is verified by Blockvision.
└─ decimals
number
Number of decimals for the coin.
pagination
object
Pagination object (limit & offset).
Success Response
See also: Environment Setup
Last updated