Wash trading detection for a Solana token given its mint address
Wash trading detection for a Solana token given its mint address. Uses Jupiter v2 24h stats to flag bot-driven volume manipulation — returns detected flag, confidence level, triggered indicators, and raw metrics. Call this before trusting a token's volume. — $0.01 USDC
10000 (raw units)
price
100
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": "HcRLc9VDgjLeK154xDawfb1dmVJ98DoSqcwTHGqiDeJR"
},
"type": "http"
},
"output": {
"example": {
"address": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"confidence": "low",
"detected": false,
"fetched_at": "2026-08-28T12:00:00+00:00",
"indicators": [],
"metrics": {
"organic_volume_pct": 45.2,
"trades_per_trader": 12.3,
"vol_liq_ratio": 2.1
},
"recommendation": "Volume metrics look organic.",
"summary": "No wash trading detected."
},
"type": "json"
}
},
"routeTemplate": "/wash-trading/: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-trading/: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-trading/: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-trading/: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/1088.json, and this resource appears in /discovery/resources and /discovery/search.