Coin New

Retrieve a list of new coins based on their published time. Note:

  • Only coins published in the last 30 days are visible

  • Only coins have liquidity pool on at least one DEX are visible

Endpoint

POST /api/v1/partner/coin-new

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.

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_holder

number

No

Minimum number of holders.

├─ max_holder

number

No

Maximum number of holders.

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

boolean

No

Filter coins with any social links.

├─ verified

boolean

No

Filter by verification status.

Example Request

Headers

Header
Required
Description

x-api-key

No

API key for authentication.

Response Body

Fields

Field
Type
Description

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_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: Environment Setup

Last updated