Skip to main content

Free API Feeds

These 8 feeds use free public APIs and are priced affordably (0.003-0.008 STX).

Liquidation Alerts

Feed IDPriceSource
liquidation-alerts0.008 STXBinance Futures

Futures liquidation alerts — long/short liquidations across top pairs. Useful for detecting leverage flush-outs and potential reversal points.

const result = await sf.buy('liquidation-alerts');
// result.data.total_liquidations_24h, long_liquidations, short_liquidations
// result.data.pairs → [{pair, long_short_ratio}, ...]

Gas Prediction

Feed IDPriceSource
gas-prediction0.003 STXBlocknative + mempool.space

ETH gas prices (slow/standard/fast) and BTC mempool fee estimates (economy/normal/priority).

const result = await sf.buy('gas-prediction');
// result.data.ethereum → {slow, standard, fast} (gwei)
// result.data.bitcoin → {economy, normal, priority} (sat/vB)

Token Launches

Feed IDPriceSource
token-launches0.005 STXDEXScreener

New and trending token launches with boost status, volume, and chain info.

const result = await sf.buy('token-launches');
// result.data.tokens → [{name, symbol, chain, price_usd, volume_24h}, ...]

Governance

Feed IDPriceSource
governance0.005 STXSnapshot.org

Active DAO proposals and voting from 7 major DAOs (Aave, Uniswap, ENS, Arbitrum, Optimism, Compound, MakerDAO).

const result = await sf.buy('governance');
// result.data.total_active → 12
// result.data.proposals → [{dao, title, state}, ...]

Stablecoin Flows

Feed IDPriceSource
stablecoin-flows0.005 STXDeFiLlama

Stablecoin market cap changes, peg deviations, and chain distribution for USDT, USDC, DAI, etc.

const result = await sf.buy('stablecoin-flows');
// result.data.total_market_cap → 180000000000
// result.data.stablecoins → [{name, market_cap, change_7d}, ...]

Security Alerts

Feed IDPriceSource
security-alerts0.005 STXDeFiLlama

DeFi security monitoring — identifies protocols with audit risks and tracks recent exploits.

const result = await sf.buy('security-alerts');
// result.data.high_risk_count → 3
// result.data.alerts → [{name, risk_level, description}, ...]

Dev Activity

Feed IDPriceSource
dev-activity0.003 STXGitHub API

Developer commit activity across Stacks, Ethereum, and Solana ecosystem repos.

const result = await sf.buy('dev-activity');
// result.data.total_commits_24h → 847
// result.data.repos → [{name, ecosystem, commits}, ...]

Bridge Flows

Feed IDPriceSource
bridge-flows0.005 STXDeFiLlama

Cross-chain bridge TVL and volume analysis. Tracks capital flows between chains.

const result = await sf.buy('bridge-flows');
// result.data.total_tvl → 25000000000
// result.data.chains → [{name, tvl, change_24h}, ...]