Pull SolRadar's trust-score data into your own bot, dashboard, or Telegram group. If your tool shows "Trust Score by SolRadar," that's a shout-out we'll happily take. Rate-limited to keep it fair for everyone.
/api.php?action=trust_score&mint=...
The main endpoint -- full trust-score verdict for any token we've ever tracked (live or archived). This is what a "paste a CA, get a verdict" bot should call.
| mint | Required. The token's Solana mint address. |
{
"mint": "...",
"name": "Example Token",
"symbol": "EX",
"is_live": true,
"url": "https://sol-radar.com/token.php?mint=...",
"certificate_image": "https://sol-radar.com/certificate.php?mint=...",
"trust_score": 55,
"breakdown": [{"label": "Mint authority renounced", "positive": true}, ...],
"market_cap_usd": 12345.6,
"looks_rugged": false,
"ath_market_cap_usd": 20000,
"crash_from_ath_pct": -38.2,
"creator": {
"address": "...",
"verified_label": null,
"track_record": "clean",
"total_tokens_tracked": 4,
"rugged_tokens_count": 0
}
}
trust_score/breakdown/market_cap_usd only appear if the token is still in our live tracking window (is_live: true). looks_rugged/ath_market_cap_usd/crash_from_ath_pct only appear if we have archive history for it. creator appears whenever the creator address is known.
/api.php?action=list&type=newest
Live token lists.
| type | newest (default), trending, or graduated. |
| limit | Optional, 1-100, default 50. |
/api.php?action=mints&mints=...
Look up specific tokens by mint, comma-separated, from the live window only.
| mints | Comma-separated mint addresses. |
/certificate.php?mint=...
Auto-generated 1200x630 PNG trust-score card for a live token -- usable directly as an <img> src or link-preview image.
| mint | Required. Must be a live-tracked mint. |
@SolRadarBot_bot is a thin client over this exact API — drop it in any group and send /check <contract address> for an instant verdict. Build your own the same way.
action=trust_score (HTTP 429 once exceeded). No API key needed. Data is automated, not a verified investigation -- see any token's page for the full disclaimer.
Questions or want your bot listed? Get in touch.