🔌 Free, no login, no API key

Public API

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.

GET /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.

mintRequired. The token's Solana mint address.
curl "https://sol-radar.com/api.php?action=trust_score&mint=<MINT>"
Example response
{
  "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.

GET /api.php?action=list&type=newest

Live token lists.

typenewest (default), trending, or graduated.
limitOptional, 1-100, default 50.
curl "https://sol-radar.com/api.php?action=list&type=trending&limit=20"
GET /api.php?action=mints&mints=...

Look up specific tokens by mint, comma-separated, from the live window only.

mintsComma-separated mint addresses.
curl "https://sol-radar.com/api.php?action=mints&mints=<MINT1>,<MINT2>"
GET /certificate.php?mint=...

Auto-generated 1200x630 PNG trust-score card for a live token -- usable directly as an <img> src or link-preview image.

mintRequired. Must be a live-tracked mint.
https://sol-radar.com/certificate.php?mint=<MINT>
Live example: our own Telegram bot

@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.

Rate limit: 30 requests/minute per IP on 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.