Checks a crypto token or contract address (Ethereum or Solana) for scam signals — honeypot
Checks a crypto token or contract address (Ethereum or Solana) for scam signals — honeypots, rug pulls, malicious contract code — and returns a 0-100 risk score with plain-language reasons, using GoPlus Security data.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-13
updated
Provider
token-safety-oracle-production-ffad.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x25904d69555507e86c19164d692c95731c9bc666",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"chain": "ethereum",
"raw": {},
"reasons": [
"Contract is verified",
"No mint or blacklist function found"
],
"riskLevel": "low",
"riskScore": 12
},
"type": "json"
}
},
"routeTemplate": "/check/:address",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"description": "Token contract address: 0x-prefixed 40-hex-digit string for Ethereum, or a base58 string for Solana.",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://token-safety-oracle-production-ffad.up.railway.app/check/:address" # -> 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-safety-oracle-production-ffad.up.railway.app/check/:address");
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-safety-oracle-production-ffad.up.railway.app/check/:address")
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/12860.json, and this resource appears in /discovery/resources and /discovery/search.