🔥 Founder's Sprint:167:47:10left ·500 slotsremaining ·
Developer Tools

Add Risk Scores to Any Website

One line of code. Live TaroAi risk scores on your Solana project — badge, widget, iframe, or REST API.

Live Preview

Try It With Any Token

Paste a Solana token address to preview the widget and badge live.

https://taroai-scan-x9c7pnwp.manus.space/widget/EPjFWdd5...

One-line JS snippet (auto-injects iframe)

<script src="https://taroai-scan-x9c7pnwp.manus.space/widget.js" data-taroai-address="EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" async></script>

Direct iframe embed

<iframe src="https://taroai-scan-x9c7pnwp.manus.space/widget/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" width="100%" height="80" frameborder="0"></iframe>
Public Endpoints

No Auth Required

These endpoints are free and open — no API key needed for basic embeds.

GET/badge/:address.svg

Returns a live SVG badge showing the token's risk score and level. Embed in any README, website, or Telegram message.

<img src="https://taroai-scan-x9c7pnwp.manus.space/badge/TOKEN_ADDRESS.svg" alt="TaroAi Risk Score" />
GET/widget/:address

Returns a full HTML widget with token name, risk score, level badge, and a link to the full report. Embed as an iframe.

<iframe src="https://taroai-scan-x9c7pnwp.manus.space/widget/TOKEN_ADDRESS" width="100%" height="80" frameborder="0"></iframe>
GET/report/:address/html

Returns a full HTML risk report page for a token. Useful for embedding in dashboards or linking from other tools.

<a href="https://taroai-scan-x9c7pnwp.manus.space/report/TOKEN_ADDRESS/html">View Full Report</a>
GET/report/:address/pdf

Returns a downloadable PDF risk report. Useful for compliance, due diligence, or sharing with investors.

curl -o report.pdf "https://taroai-scan-x9c7pnwp.manus.space/report/TOKEN_ADDRESS/pdf"
Authenticated Endpoints

REST API Reference

All endpoints require a Bearer API key in the Authorization header.

GET/api/v1/scan/:addressAlso available as POST /api/v1/scan

Run 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

curl -H "Authorization: Bearer taro_YOUR_KEY" \ "https://taroai-scan-x9c7pnwp.manus.space/api/v1/scan/YOUR_TOKEN_ADDRESS"

// Response shape

{
  "address": "...",
  "symbol": "BONK",
  "riskScore": 72,
  "riskLevel": "CRITICAL",
  "redFlags": ["Hidden mint function"],
  "greenFlags": ["Liquidity locked"],
  "aiVerdict": "...",
  "usage": { "requestsToday": 1, "requestsPerDay": 100 }
}
GET/api/v1/callers/leaderboardNEW

Fetch the top signal callers ranked by win rate, total calls, or average gain. Ideal for bots and dashboards that surface trusted alpha sources.

limitnumber

Results per page (max 200, default 50)

offsetnumber

Pagination offset (default 0)

sort_bystring

winRate | totalCalls | safeCalls | avgGain

verified_onlyboolean

true = only verified callers

cURL example

curl -H "Authorization: Bearer taro_YOUR_KEY" \ "https://taroai-scan-x9c7pnwp.manus.space/api/v1/callers/leaderboard?limit=10&sort_by=winRate&verified_only=true"

// 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 }
}
Quick Start

Copy & Paste

JS widget snippet (replace YOUR_TOKEN_ADDRESS)

<!-- TaroAi Risk Widget --> <script src="https://taroai-scan-x9c7pnwp.manus.space/widget.js" data-taroai-address="YOUR_TOKEN_ADDRESS" async ></script>

GitHub README badge (Markdown)

[![TaroAi Risk Score](https://taroai-scan-x9c7pnwp.manus.space/badge/YOUR_TOKEN_ADDRESS.svg)](https://taroai-scan-x9c7pnwp.manus.space/report/YOUR_TOKEN_ADDRESS)

cURL — download PDF report

curl -o report.pdf "https://taroai-scan-x9c7pnwp.manus.space/report/YOUR_TOKEN_ADDRESS/pdf"

Need Higher Rate Limits?

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

TaroAi — Developer Tools