Is this address safe to pay?
Is this address safe to pay? Screen a wallet address before you pay or send funds to it: an OFAC SDN sanctions check of the address plus address reputation (drainer, phishing, mixer, money laundering) for EVM and Solana. Returns one verdict to branch on (allow, review, or block) with a 0-100 risk score and per-signal evidence. AML / KYT counterparty check for x402 payments. $0.02 USDC.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.anchor-x402.com/v1/screen
| Category | Company and compliance |
|---|---|
| Provider host | api.anchor-x402.com |
| Networks | eip155:137, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"wallet": "0x8589427373d6d84e98730d7795d8f6f8731fda16"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"wallet": {
"description": "Wallet address \u2014 EVM 0x\u2026 (40 hex) or Solana base58 pubkey.",
"type": "string"
}
},
"required": [
"wallet"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}