check_wallet_in_token
Is a SPECIFIC wallet involved in a SPECIFIC Solana token? Use this when a user names a wallet they are worried about, or when your agent keeps its own watchlist of addresses and wants to screen a token against one.
Answers from two sources at once:
the traced holders of that token — rank, % of supply, buy slot, whether it funded a coordinated cluster, whether it created the token, or whether it is the liquidity pool / a labelled exchange wallet
a LIVE on-chain holding lookup, so a wallet too small to appear in the trace is still resolved rather than dismissed
HOW TO READ THE RESULT — this matters more than the fields:
found_in_scan=false is NOT a clean bill of health. The trace covers the
largest holders, so a smaller position sits outside it, and a wallet that
sold out and closed its token account leaves nothing to observe. Never
tell a user a wallet is 'clean' or 'not involved' on this result. The
note field states the limit of what was actually checked; relay it.
holding.sold_out=true is the strong signal: a token account exists holding none of the token, i.e. this wallet HELD it and has since sold out.
track_record, when present, counts earlier tokens the wallet was early in and how many graduated. It is an association measured out-of-sample, NOT a profit signal and not a recommendation to copy or avoid anyone. Absence of a track record means we hold no record, not that the wallet has no history.
Free, no API key, rate limited per caller. For screening MANY wallets on every scan automatically, the Screen List add-on stores a private list per key: POST /api/screen-list/checkout.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wallet | Yes | The wallet address to look for in that token (base58, 32–44 chars) | |
| mintAddress | Yes | The Solana mint address of the token (base58, 32–44 chars) |