Ticker data for a trading pair (CoinGecko-compatible format).

interface PairTicker {
    ask: string;
    base_currency: string;
    base_volume: string;
    bid: string;
    high: string;
    last_price: string;
    low: string;
    target_currency: string;
    target_volume: string;
    ticker_id: string;
}

Properties

ask: string

Lowest ask (sell) price.

base_currency: string

Base currency symbol.

base_volume: string

24-hour base currency volume.

bid: string

Highest bid (buy) price.

high: string

24-hour highest price.

last_price: string

Last traded price.

low: string

24-hour lowest price.

target_currency: string

Target (quote) currency symbol.

target_volume: string

24-hour target currency volume.

ticker_id: string

Ticker identifier (e.g., "fFUEL_fUSDC").