Solana token safety check — mint authority, freeze authority, top holder concentration, li
Solana token safety check — mint authority, freeze authority, top holder concentration, liquidity, honeypot detection, metadata mutability, token age, Token-2022 extension risks, rug risk score
20000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-15
updated
Provider
tokensafe-production.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "MgSxRMwW39uG1ehqW6nuKvHzJsq9A3wG2cgV3i8ctAz",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"mint": "So11111111111111111111111111111111111111112"
},
"type": "http"
},
"output": {
"example": {
"mint": "So11111111111111111111111111111111111111112",
"risk_level": "LOW",
"risk_score": 15,
"summary": "Low risk. All authorities renounced, deep liquidity."
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
}
},
"required": [
"method"
]
}
}
}
}
}Use it
curl
curl "https://tokensafe-production.up.railway.app/v1/check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tokensafe-production.up.railway.app/v1/check");
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://tokensafe-production.up.railway.app/v1/check")
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/15640.json, and this resource appears in /discovery/resources and /discovery/search.