mirrored listing x402 base

Full wallet & token risk report — no API key, no account, no signup; pay per call in USDC

Full wallet & token risk report — no API key, no account, no signup; pay per call in USDC on Base. GET ?address=0x... (required), chain=ethereum|base (default base), type=wallet|token (default wallet). Checks OFAC sanctions, scam/phishing lists, and honeypot/tax/mint signals. Returns risk_score 0-100, risk_level, a PROCEED|CAUTION|BLOCK verdict, flags[], reasons[] with severity, raw signals, and sources[]. For agents screening a counterparty before they transact.

Do you run uxus.finance? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
6
calls / 30d
1
unique payers
2026-09-03
updated

Provider

uxus.finance · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "base",
    "payTo": "0xE0Ed7A30589Fec49e98F2085c7162B90FdbB83de",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "address": "0x EVM address (wallet or token contract). Required.",
          "chain": "ethereum | base. Default base.",
          "type": "wallet | token. Default wallet."
        },
        "type": "http"
      },
      "output": {
        "example": {
          "address": "0xd8da...6045",
          "chain": "base",
          "checked_at": "2026-09-03T00:00:00Z",
          "flags": [
            "CLEAN"
          ],
          "reasons": [
            {
              "code": "CLEAN",
              "detail": "no sanctions or scam-list matches",
              "severity": 0,
              "source": "cryptorisk"
            }
          ],
          "risk_level": "low",
          "risk_score": 0,
          "signals": {
            "tx_count": 42,
            "wallet_age_days": 1135
          },
          "sources": [
            "ofac",
            "scamsniffer",
            "mew"
          ],
          "type": "wallet",
          "verdict": "PROCEED"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {},
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://uxus.finance/api/risk/pro"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://uxus.finance/api/risk/pro");
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://uxus.finance/api/risk/pro")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/7110.json, and this resource appears in /discovery/resources and /discovery/search.