Skip to main content
Helpful?

The DEX Tickers

Tickers endpoint

The API /tickers are used to fetch information about the price and 24-hour trading volume of each available trading pair on the exchange.

The BSC endpoint

https://api.appleswap.ai/bsc/tickers

The Arbitrum endpoint

https://api.appleswap.ai/arbitrum/tickers

The Ethereum endpoint

https://api.appleswap.ai/eth/tickers

The Polygon endpoint

https://api.appleswap.ai/polygon/tickers

Example data

[
{
"ticker_id":"0x4bc99635f7cd965069ae7142d66784ea518995e3_0x55d398326f99059ff775485246999027b3197955",
"base_currency":"0x55d398326f99059ff775485246999027b3197955",
"target_currency":"0x4bc99635f7cd965069ae7142d66784ea518995e3",
"base_volume":1974.7976423482323,
"target_volume":382409.48838599026,
"liquidity_in_usd":35676.122680428662,
"pool_id":"0x07a10a1fd20828a3ddbfbccc8e2321905342527e",
"last_price":0.000061582801
}
]
NameDescription
ticker_idIdentifier code according to the base currency/target currency formula
base_currencyThe address of the base token
target_currencyThe address of the target token
base_volumeThe 24-hour trading volume for the pair (measured in the base currency)
target_volumeThe 24-hour trading volume for the pair (measured in the target currency)
liquidity_in_usdThe liquidity of the pool in USD
pool_idThe address ID of the trading pair
last_priceThe latest trading price of the base currency based on the target currency
Helpful?