The tickers endpoint returns comprehensive trading information for all DAOs discovered in the Futarchy protocol. This endpoint automatically discovers and aggregates data without requiring manual configuration.
This endpoint is fully compatible with CoinGecko’s DEX API specification.
Unique identifier for the trading pair in format {BASE_MINT}_{QUOTE_MINT}Example: "ZKFHiLAfAFMTcDAuCtjNW54VzpERvoe7PBF9mYgmeta_EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
Prices are calculated from spot pool reserves only (not conditional/futarchy pools).Formula:price = (quoteReserves / baseReserves) * 10^(baseDecimals - quoteDecimals)This ensures accurate pricing regardless of token decimal differences.
Volume Calculation
Volume is derived from accumulated protocol fees, providing accurate trading activity.Formula:volume = protocolFees / feeRateUses the PROTOCOL_FEE_RATE configured in your environment (default: 0.25%).
Liquidity Calculation
Liquidity is calculated as double the quote reserves (for stablecoin pairs).Formula:liquidity = 2 * quoteReservesAssumes symmetric liquidity for stablecoin-denominated pools.
Bid/Ask Spread
Bid and ask prices account for price impact from trading.These values represent realistic execution prices for small trades.