Skip to content

bullpen solana token performance

Last updated: July 13, 2026

Show token performance metrics for a mint address

Usage

bullpen solana token performance [OPTIONS] <MINT>

Live Help

Show token performance metrics for a mint address

Usage: bullpen solana token performance [OPTIONS] <MINT>

Arguments:
  <MINT>
          SPL token mint address

Options:
      --output <OUTPUT>
          Output format for command results

          [possible values: table, json]

      --timeframe <TIMEFRAME>
          Performance timeframe

          [default: all]
          [possible values: 5m, 1h, 4h, 12h, 24h, all]

      --env <ENV>
          Target environment to connect to (overrides config.toml)

          [env: BULLPEN_ENV=]
          [possible values: staging, production]

      --config <CONFIG>
          Path to a custom config.toml file (overrides $BULLPEN_CONFIG and the default location).

          Explicit --config and BULLPEN_CONFIG paths fail closed: if the file is missing, the CLI exits validation instead of silently loading defaults. Credentials still resolve via BULLPEN_HOME, so set BULLPEN_HOME too when isolating a session.

      --read-only
          Enable read-only mode: blocks all mutating commands

      --non-interactive
          Suppress interactive prompts; does NOT imply --yes for money-moving commands

          [env: BULLPEN_NON_INTERACTIVE=]

  -h, --help
          Print help (see a summary with '-h')

EXAMPLES:
  # Show supported token performance timeframes
  bullpen solana token performance So11111111111111111111111111111111111111112

  # Export 24h token performance as JSON
  bullpen solana token performance So11111111111111111111111111111111111111112 --timeframe 24h --output json

Example Commands

bullpen solana token performance So11111111111111111111111111111111111111112
bullpen solana token performance So11111111111111111111111111111111111111112 --timeframe 24h --output json

JSON Output

Contract: JSON Output Contract.

Successful output is a single JSON document. The shape below is representative for this command family; commands may add fields without breaking the shared contract.

Schema version: 1 when a command emits schema_version; otherwise treat the current command shape as contract version 1.

Top-level Keys

key type nullable notes
schema_version integer no Stable schema version for token-performance output
chain string no Always solana
mint string no SPL token mint address queried
symbol string yes Token symbol when Bullpen account services return it
name string yes Token name when Bullpen account services return it
source string no Upstream source label, currently usergate_market_data.get_token_overview
timeframe string no Requested timeframe: 5m, 1h, 4h, 12h, 24h, or all
timeframes array no Performance metric rows keyed by timeframe with price, volume, transaction, buyer/seller, and change fields

Example

Example JSON output
bullpen solana token performance So11111111111111111111111111111111111111112 --timeframe 24h --output json
{
  "schema_version": 1,
  "chain": "solana",
  "mint": "So11111111111111111111111111111111111111112",
  "symbol": "SOL",
  "name": "Wrapped SOL",
  "source": "usergate_market_data.get_token_overview",
  "timeframe": "24h",
  "timeframes": [
    {
      "timeframe": "24h",
      "price_change_percent": "-2.5",
      "high_price": "150.25",
      "low_price": "120.5",
      "total_volume": "25000000",
      "buy_volume": "14000000",
      "sell_volume": "11000000",
      "total_transactions": 1000,
      "buy_transactions": 550,
      "sell_transactions": 450,
      "unique_buyers": 300,
      "unique_sellers": 250,
      "unique_transactions": 900,
      "volume_change_percent": "12.75",
      "price_change": "-3.25"
    }
  ]
}

Stability

Patch releases may add nullable or optional fields. Minor releases may add required fields or increment schema_version. Major releases may remove or rename fields.