Feature-rich command-line interface for crypto news, prices, market data & more — powered by cryptocurrency.cv.
npm install -g @nicholasrq/fcn-cliOr run directly with npx:
npx @nicholasrq/fcn-cli newsAfter installing globally, use the fcn command:
fcn news
fcn prices
fcn watch bitcoinUsage: fcn <command> [options]
Commands:
news Get latest crypto news
search <query> Search news by keyword
prices Show live crypto prices
market Show market overview
fear-greed Show Fear & Greed Index
gas Show Ethereum gas prices
trending Show trending coins
sources List all news sources
ask <question> Ask AI a crypto question
watch <coin> Watch live price updates (10s refresh)
Options:
--limit, -l Number of results (default: 10)
--category Filter by category (bitcoin, ethereum, defi, nft, etc.)
--format Output format: table, json, csv (default: table)
--no-color Disable colored output
--help, -h Show help
--version Show version
# Get the latest 10 articles
fcn news
# Top 5 articles
fcn news --limit 5
# Filter by category
fcn news --category bitcoin
fcn news --category defi# Search for a topic
fcn search "ethereum ETF"
# Search with limited results
fcn search "SEC regulation" --limit 20# Show top 10 crypto prices
fcn prices
# Show more coins
fcn prices --limit 25
# Export as JSON
fcn prices --format json# Total market cap, BTC dominance, volume, etc.
fcn market# Visual gauge of market sentiment
fcn fear-greed# Current gas prices (slow, standard, fast, instant)
fcn gas# What's hot right now
fcn trending# List all 130+ news sources
fcn sources# Ask a crypto question
fcn ask "What is DeFi?"
fcn ask "Explain Bitcoin halving"# Watch Bitcoin price (updates every 10 seconds)
fcn watch bitcoin
# Watch Ethereum
fcn watch ethereum
# Press Ctrl+C to stopfcn prices # Coin Price 24h % Market Cap
── ────────────── ───────── ──────── ──────────
1 BTC Bitcoin $104,230 +2.31% $2.05T
2 ETH Ethereum $3,891 -0.45% $468.2B
3 SOL Solana $187.50 +5.12% $82.1B
fcn prices --format json | jq '.prices[0]'fcn prices --format csv > prices.csv# Check what happened overnight
fcn news --limit 5
fcn market
fcn fear-greed# Deep dive into a topic
fcn search "SEC regulation" --limit 30 --format json > sec-news.json
# Export prices for analysis
fcn prices --limit 100 --format csv > prices.csv# Pipe to jq for processing
fcn prices --format json | jq '.prices[] | select(.change24h > 5)'
# Monitor breaking news
watch -n 60 'fcn news --limit 3 --no-color'
# Send to Slack
fcn news --limit 1 --format json | jq -r '.articles[0] | "📰 \(.title) — \(.source)"' | curl -X POST -d @- "$SLACK_WEBHOOK"#!/bin/bash
# Daily crypto digest
echo "=== Crypto Daily Digest ==="
echo ""
echo "--- Market ---"
fcn market --no-color
echo "--- Fear & Greed ---"
fcn fear-greed --no-color
echo "--- Top News ---"
fcn news --limit 5 --no-color📰 Latest Crypto News
1. Bitcoin Surges Past $100K as ETF Inflows Hit Record
CoinDesk • 2 hours ago
Institutional demand continues to drive the rally...
2. Ethereum L2s Process More Transactions Than Mainnet
The Block • 3 hours ago
Base and Arbitrum lead the scaling race...
3. DeFi TVL Reaches All-Time High of $200B
The Defiant • 4 hours ago
───
Powered by Free Crypto News API • https://cryptocurrency.cv
- Node.js >= 18 (uses built-in
fetch) - No external dependencies
SEE LICENSE IN LICENSE