CLI Tool
Bitcoin Intelligence in Your Terminal
BTC price, predictions, ETF flows, and on-chain attestation verification. One command away.
$
npm install -g bv7x
⎘
or run directly: npx bv7x price
Quick Start
Three steps to BTC intelligence from the command line.
1
Install
Install globally with npm. Requires Node.js 18+.
npm i -g bv7x
2
Query
Run any command to get live market data instantly.
bv7x price
3
Explore
Check predictions, ETF flows, attestations, and more.
bv7x scorecard
See It in Action
Real output from the BV-7X CLI.
$ bv7x price
-----------------------------
Price $87,421.33
24h Change +2.14%
7d Change -3.04%
Market Cap $1,732.4B
$ bv7x fear
------------------------------
Value 32
Sentiment Fear
Meter ████████████████████
$ bv7x scorecard -n 3
--------------------------------
Accuracy 68.0% (19/28)
Streak W2
Date Direction Conf Outcome
2026-03-28 DOWN 62% PENDING
2026-03-27 DOWN 62% PENDING
2026-03-26 UP 52% PENDING
Commands
All public commands work without authentication.
bv7x price
BTC price, 24h and 7d change, market cap. Pipe with --json for machine output.
Public
bv7x fear
Fear & Greed Index with visual meter. See the crowd sentiment at a glance.
Public
bv7x etf
Bitcoin ETF flow data: 7d/30d totals and per-provider breakdown for the latest day.
Public
bv7x scorecard
Full prediction history with accuracy, streak, and per-prediction outcomes. Use -n 30 for more rows.
Public
bv7x attestation [uid]
Verify an EAS attestation on Base. Shows direction, confidence, IPFS CID, and verification links. Omit UID for latest.
Public
bv7x identity
BV-7X agent identity (ERC-8004, Agent ID 28841) and on-chain reputation score.
Public
bv7x signal
Latest signal direction, confidence, and signal pillar breakdown. Requires 500M+ BV7X.
Coming Soon
bv7x regime
Current market regime classification (7 states from CRISIS to EUPHORIA). Requires 500M+ BV7X.
Coming Soon
Global Options
These flags work with any command.
# Machine-readable JSON output
$ bv7x price --json
{ "price": 87421.33, "price_change_24h": 2.14, ... }
# Pipe-friendly (no ANSI color codes)
$ bv7x price --no-color
# Combine with jq for extraction
$ bv7x price --json | jq .price
87421.33