Two read-only endpoints, open access during beta — no API key required yet. Everything returns JSON.
/api/v1/tokens/:address/scoreReturns the current risk score and on-chain data for a token.
curl "http://getvetted.xyz//api/v1/tokens/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/score"
{
"address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"chain": "solana",
"symbol": "BONK",
"riskScore": 100,
"liquidity": 274347.91,
"taxBuy": 0,
"taxSell": 0,
"honeypot": false,
"holderCount": 1012305,
"lastUpdated": "2026-09-10T15:10:32.888Z"
}Returns 404 if the token isn't tracked yet.
/api/v1/kols/:username/statsReturns a KOL's win-rate, average return, and recent call history.
curl "http://getvetted.xyz//api/v1/kols/kol_alpha/stats"
{
"username": "kol_alpha",
"displayName": "Alpha Caller",
"winRate": 60,
"avgReturn": 36,
"totalCalls": 15,
"updatedAt": "2026-09-10T14:00:00.000Z",
"recentCalls": [
{ "tokenAddress": "...", "symbol": "BONK", "calledAt": "..." }
]
}Returns 404 if the username isn't tracked yet.