bullpen solana token holders¶
Last updated: July 13, 2026
Show token holders for a mint address
Usage¶
Live Help¶
Show token holders for a mint address
Usage: bullpen solana token holders [OPTIONS] <MINT>
Arguments:
<MINT>
SPL token mint address
Options:
--limit <LIMIT>
Maximum number of holders to display
[default: 50]
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--cursor <CURSOR>
Cursor returned by a previous holders response
--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.
--sort <SORT>
Holder sort field
[default: balance]
[possible values: balance, first-held]
--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 top holders for a Solana token
bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
# Export token holders as JSON
bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v --limit 25 --output json
Example Commands¶
bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
bullpen solana token holders EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v --limit 25 --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-holder output |
chain |
string | no | Always solana |
mint |
string | no | SPL token mint address queried |
source |
string | no | Upstream source label, currently usergate_market_data.get_holders |
sort |
object | no | Sort field and direction used for the request |
pagination |
object | no | Cursor pagination metadata including next_cursor |
top10_holders_percent |
string/decimal | yes | Percent of supply held by the top ten holders |
holders |
array | no | Holder rows with rank, wallet, balance, share, value, and first-held timestamp |
Example¶
Example JSON output
{
"schema_version": 1,
"chain": "solana",
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"source": "usergate_market_data.get_holders",
"sort": {
"field": "balance",
"direction": "desc"
},
"pagination": {
"next_cursor": "holder-cursor-2",
"items_per_page": 25,
"total_items": 1000000,
"total_pages": null,
"current_page": null
},
"top10_holders_percent": "22.5",
"holders": [
{
"rank": 1,
"wallet_address": "7qRkWTrM4DLpmeSnB8xT8p8mpqLQ9JdYatYczS4u1G8e",
"balance": "1250000.5",
"holding_percentage": "12.5",
"value_usd": "1250000.5",
"first_held_timestamp": 1779920575
}
]
}
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.