Skip to content

bullpen solana token

Last updated: July 13, 2026

Show token details for a mint address

Usage

bullpen solana token [OPTIONS] [MINT] [COMMAND]

Subcommands

Subcommand Description
holders Show token holders for a mint address
traders Show recent token traders for a mint address
whales Show recent whale transactions for a mint address
performance Show token performance metrics for a mint address
transactions Show recent token transactions for a mint address
chart Show historical candlesticks for a token
developer Show developer funding, token, and migration metrics for a mint
risk Show Jupiter Shield and available risk signals for a mint
hide Hide a Solana token row in Bullpen display surfaces
unhide Restore a hidden Solana token row in Bullpen display surfaces
hidden List Solana token rows hidden for this Bullpen account

Live Help

Show token details for a mint address

Usage: bullpen solana token [OPTIONS] [MINT] [COMMAND]

Commands:
  holders       Show token holders for a mint address
  traders       Show recent token traders for a mint address
  whales        Show recent whale transactions for a mint address
  performance   Show token performance metrics for a mint address
  transactions  Show recent token transactions for a mint address
  chart         Show historical candlesticks for a token
  developer     Show developer funding, token, and migration metrics for a mint
  risk          Show Jupiter Shield and available risk signals for a mint
  hide          Hide a Solana token row in Bullpen display surfaces
  unhide        Restore a hidden Solana token row in Bullpen display surfaces
  hidden        List Solana token rows hidden for this Bullpen account
  help          Print this message or the help of the given subcommand(s)

Arguments:
  [MINT]
          SPL token mint address

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

          [possible values: table, json]

      --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 USDC token details
  bullpen solana token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

  # Export USDC token details as JSON
  bullpen solana token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v --output json

  # Show top holders for a mint
  bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

  # Show recent traders for a mint
  bullpen solana token traders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

  # Show recent whale transactions for a mint
  bullpen solana token whales EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

Example Commands

bullpen solana token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
bullpen solana token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v --output json
bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
bullpen solana token traders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
bullpen solana token whales EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
bullpen solana token --help

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
mint string no SPL token mint address
symbol string yes Token symbol when available
name string yes Token display name when available
decimals integer yes SPL mint decimal count when upstream supplies it
created_at_ms integer yes Upstream creation timestamp in milliseconds when available
liquidity_usd string/decimal yes Estimated token liquidity in USD
market_cap_usd string/decimal yes Estimated market capitalization in USD
holder_count integer yes Holder count when upstream supplies it
top10_holder_pct string/decimal yes Percent of supply held by the top ten holders
social_links object no Website and social URLs keyed by upstream label
launchpad string yes Launchpad label when upstream supplies it
exchanges array no Exchange labels when upstream supplies them

Example

bullpen solana token EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v --output json
{
  "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "symbol": "USDC",
  "name": "USD Coin",
  "decimals": 6,
  "created_at_ms": null,
  "liquidity_usd": "250000000",
  "market_cap_usd": null,
  "holder_count": 1000000,
  "top10_holder_pct": null,
  "social_links": {
    "website": "https://www.circle.com/usdc"
  },
  "launchpad": null,
  "exchanges": []
}

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.