Summary for a trading pair (CoinGecko-compatible format).

interface PairSummary {
    base_volume: string;
    highest_bid: string;
    highest_price_24h: string;
    last_price: string;
    lowest_ask: string;
    lowest_price_24h: string;
    price_change_percent_24h: string;
    quote_volume: string;
    trading_pairs: string;
}

Properties

base_volume: string

24-hour base asset volume.

highest_bid: string

Highest bid (buy) price.

highest_price_24h: string

24-hour highest price.

last_price: string

Last traded price.

lowest_ask: string

Lowest ask (sell) price.

lowest_price_24h: string

24-hour lowest price.

price_change_percent_24h: string

24-hour price change as a percentage string.

quote_volume: string

24-hour quote asset volume.

trading_pairs: string

Trading pair identifier (e.g., "fFUEL_fUSDC").