One line of code. Live TaroAi risk scores on your Solana project — badge, widget, iframe, or REST API.
Paste a Solana token address to preview the widget and badge live.
One-line JS snippet (auto-injects iframe)
Direct iframe embed
These endpoints are free and open — no API key needed for basic embeds.
/badge/:address.svgReturns a live SVG badge showing the token's risk score and level. Embed in any README, website, or Telegram message.
/widget/:addressReturns a full HTML widget with token name, risk score, level badge, and a link to the full report. Embed as an iframe.
/report/:address/htmlReturns a full HTML risk report page for a token. Useful for embedding in dashboards or linking from other tools.
/report/:address/pdfReturns a downloadable PDF risk report. Useful for compliance, due diligence, or sharing with investors.
All endpoints require a Bearer API key in the Authorization header.
/api/v1/scan/:addressAlso available as POST /api/v1/scanRun a full 6-pillar TaroAi risk analysis on any Solana token. Returns risk score (0–100), risk level, red/green flags, and AI verdict.
cURL example
// Response shape
{
"address": "...",
"symbol": "BONK",
"riskScore": 72,
"riskLevel": "CRITICAL",
"redFlags": ["Hidden mint function"],
"greenFlags": ["Liquidity locked"],
"aiVerdict": "...",
"usage": { "requestsToday": 1, "requestsPerDay": 100 }
}/api/v1/callers/leaderboardNEWFetch the top signal callers ranked by win rate, total calls, or average gain. Ideal for bots and dashboards that surface trusted alpha sources.
limitnumberResults per page (max 200, default 50)
offsetnumberPagination offset (default 0)
sort_bystringwinRate | totalCalls | safeCalls | avgGain
verified_onlybooleantrue = only verified callers
cURL example
// Response shape
{
"data": [
{
"id": 1,
"handle": "alphawolf",
"displayName": "Alpha Wolf",
"platform": "telegram",
"isVerified": true,
"totalCalls": 42,
"safeCalls": 35,
"winRate": 83.3,
"avgGainPct": "124.50"
}
],
"meta": { "limit": 10, "offset": 0, "sort_by": "winRate", "verified_only": true },
"usage": { "requestsToday": 1, "requestsPerDay": 100 }
}JS widget snippet (replace YOUR_TOKEN_ADDRESS)
GitHub README badge (Markdown)
cURL — download PDF report
Free embeds are rate-limited to 100 requests/hour. For production apps, dashboards, or bots — get an API key and unlock 10,000+ requests/hour with Pro.
100 req/hr
Free Tier
10K req/hr
Pro Tier
Unlimited
Enterprise