Authenticity trend for a Solana token — current wash metrics vs the server's own hourly sn
Authenticity trend for a Solana token — current wash metrics vs the server's own hourly snapshot history (tamper-proof baselines). Trend: STABLE / DEGRADING / IMPROVING / NO_BASELINE. Call this to see if a token's trading character is deteriorating since you first looked. — $0.01 USDC
10000 (raw units)
price
1431
calls / 30d
2
unique payers
2026-09-18
updated
Provider
svm402.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "4ofUMGcRHsfr6LMY6AuaRSQpqyKsvibSbXmieQL4i8Dc",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "AGi2s9zPRPHs3zEDPhPTroumTEXK5ufymYSfEFndCSSW"
},
"type": "http"
},
"output": {
"example": {
"address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"baseline": {
"organic_pct": 65,
"ts": "2026-09-06T18:16:29Z",
"vol_liq_ratio": 1.8
},
"delta": {
"organic_pct_change": -45
},
"organic_pct": 20,
"trend": "DEGRADING",
"vol_liq_ratio": 402
},
"type": "json"
}
},
"routeTemplate": "/wash-delta/:address",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"description": "Solana token mint address (base58, 32-44 chars)",
"maxLength": 44,
"minLength": 32,
"type": "string"
}
},
"required": [
"address"
],
"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://svm402.com/wash-delta/: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://svm402.com/wash-delta/: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://svm402.com/wash-delta/: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/1087.json, and this resource appears in /discovery/resources and /discovery/search.