Coin List

Retrieve a paginated list of coins with customizable sorting and filtering options. This API provides comprehensive coin data with flexible query parameters for various use cases.

Endpoint

POST /api/v1/partner/coin-list

Request Body

Parameters

Field
Type
Required
Description

pagination

object

No

Pagination settings

├─ limit

number

No

Max number of items to return. Default: 20, Max: 200.

└─ offset

number

No

Index to start the results from. Default: 0.

sort_by

string

No

Sort field. Default: VOLUME_1D. See Sort By Options.

order

string

No

Sort order: ASC or DESC. Default: DESC.

filters

object

No

Filter criteria

├─ coin_ids

string[]

No

Array of coin_id to filter (use to filter favorite coins).

├─ min_market_cap

number

No

Minimum market cap filter.

├─ max_market_cap

number

No

Maximum market cap filter.

├─ min_liquidity

number

No

Minimum liquidity (USD) filter.

├─ max_liquidity

number

No

Maximum liquidity (USD) filter.

├─ min_volume

number

No

Minimum 24h volume filter.

├─ max_volume

number

No

Maximum 24h volume filter.

├─ min_top_10_holding

number

No

Minimum top 10 holders percentage (0-100).

├─ max_top_10_holding

number

No

Maximum top 10 holders percentage (0-100).

├─ min_holder

number

No

Minimum number of holders.

├─ max_holder

number

No

Maximum number of holders.

├─ min_price_1h_change

number

No

Minimum 1h price change percentage.

├─ max_price_1h_change

number

No

Maximum 1h price change percentage.

├─ min_price_6h_change

number

No

Minimum 6h price change percentage.

├─ max_price_6h_change

number

No

Maximum 6h price change percentage.

├─ min_price_24h_change

number

No

Minimum 24h price change percentage.

├─ max_price_24h_change

number

No

Maximum 24h price change percentage.

├─ min_tx_buy_24h

number

No

Minimum buy transactions in 24h.

├─ max_tx_buy_24h

number

No

Maximum buy transactions in 24h.

├─ min_tx_sell_24h

number

No

Minimum sell transactions in 24h.

├─ max_tx_sell_24h

number

No

Maximum sell transactions in 24h.

├─ min_tx_24h

number

No

Minimum total transactions in 24h.

├─ max_tx_24h

number

No

Maximum total transactions in 24h.

├─ publish_at_from

string

No

Filter coins published from this date (ISO 8601 format).

├─ publish_at_to

string

No

Filter coins published until this date (ISO 8601 format).

├─ has_x_social

boolean

No

Filter coins with X/Twitter social link.

├─ has_telegram_social

boolean

No

Filter coins with Telegram social link.

├─ has_discord_social

boolean

No

Filter coins with Discord social link.

├─ has_website_social

boolean

No

Filter coins with website link.

├─ has_social

boolean

No

Filter coins with any social links.

├─ verified

boolean

No

Filter by verification status.

└─ is_boosted

boolean

No

Filter boosted coins.

Sort By Options

Value
Description

VOLUME_1D

Sort by 24-hour trading volume (default)

MARKETCAP

Sort by market capitalization

LIQUIDITY

Sort by liquidity in USD

TX_COUNT

Sort by transaction count (24h)

PRICE_CHANGE_1H

Sort by 1-hour price change

PRICE_CHANGE_4H

Sort by 4-hour price change

PRICE_CHANGE_6H

Sort by 6-hour price change

PRICE_CHANGE_1D

Sort by 24-hour price change

PUBLISHED_AT

Sort by coin publish date

Example Request

Headers

Header
Required
Description

x-api-key

No

API key for authentication.

Response Body

Fields

Field
Type
Description

data

array

List of 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_1h

number

% price change in the last hour.

├─ price_change_6h

number

% price change in the last 6 hours.

├─ price_change_1d

number

% price change in the last 24 hours.

├─ 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:

Last updated