ERC-20 token due diligence — risk score, GoPlus security scan, honeypot detection, liquidi
ERC-20 token due diligence — risk score, GoPlus security scan, honeypot detection, liquidity, holder concentration, AI analyst verdict
150000 (raw units)
price
49
calls / 30d
3
unique payers
2026-09-18
updated
Provider
token.lonestaroracle.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52Ab53912D37759B2ad364f22dD06B16714b6C06",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "150000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3nmeVj5m9Uq2hSTfsVsn3tJMHRJQNMKR1AjzyUJbrSgw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "150000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "eth",
"contract": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"wallet": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
},
"type": "http"
},
"output": {
"example": {
"is_honeypot": false,
"liquidity_usd": 98000000,
"name": "USD Coin",
"ownership_renounced": true,
"risk_flags": [],
"risk_score": 2,
"symbol": "USDC",
"token_age_days": 2100,
"top10_concentration_pct": 45.2,
"verified": true
},
"format": "json",
"type": "object"
}
},
"schema": {
"category": "blockchain",
"description": "On-chain due diligence for ERC-20 tokens. Returns risk score, GoPlus security flags (mintable, hidden owner, pausable), honeypot detection, liquidity, holder concentration, ownership, and a 3-sentence AI analyst verdict from Claude Haiku.",
"name": "LoneStarOracle — TokenScope",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"title": "Address",
"type": "string"
},
"chain": {
"default": "eth",
"title": "Chain",
"type": "string"
},
"contract": {
"title": "Contract",
"type": "string"
},
"token": {
"title": "Token",
"type": "string"
},
"wallet": {
"title": "Wallet",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"is_honeypot": false,
"liquidity_usd": 98000000,
"name": "USD Coin",
"ownership_renounced": true,
"risk_flags": [],
"risk_score": 2,
"symbol": "USDC",
"token_age_days": 2100,
"top10_concentration_pct": 45.2,
"verified": true
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"tags": [
"crypto",
"defi",
"token",
"risk",
"due-diligence"
],
"type": "object",
"version": "2.0.0"
}
}
}Use it
curl
curl "https://token.lonestaroracle.xyz/report" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://token.lonestaroracle.xyz/report");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://token.lonestaroracle.xyz/report")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3093.json, and this resource appears in /discovery/resources and /discovery/search.