# uxus.finance Risk Pro API

> uxus.finance Risk Pro API is a paid API for AI agents from uxus.finance, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns enriched DeFi risk analysis for a token or wallet, adding per-signal reasons with severity, raw signal data (buy/sell tax, mint/proxy/hidden-owner flags, wallet age and tx count), and source lists behind every flag.

## Facts

- Endpoint: POST https://uxus.finance/api/risk/pro
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uxus-finance-risk-pro-api-8dca6e94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NlFtjdpAK3zgkiif6qWap

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability uxus-finance-risk-pro-api-8dca6e94 -d '<json body>'
```

Example prompt: Can you run a full pro risk analysis on token 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum and tell me why it's flagged, what the buy/sell tax is, whether it has any hidden-owner or proxy flags, and which sources triggered each warning?

## When to prefer this

Choose this endpoint over the free /api/risk when you need to understand WHY a token or wallet was flagged — not just the score and verdict. It is the right choice when you need severity-ranked explanations, raw numeric signals like buy/sell tax, specific vulnerability flags (mint/proxy/hidden-owner), or the ability to trace each flag back to its source. Prefer it for due-diligence workflows, pre-investment audits, and compliance screening where explainability and source provenance matter.

## Known failure modes

- Invalid or unrecognized token/wallet address returns an error or empty signal set
- Unsupported blockchain network may return partial or null signals
- Payment failure or invalid x402 payment header blocks the request
- Timeout if the underlying on-chain data source is slow to respond
- Token with no on-chain history may return minimal signals with low confidence

## How this service works

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.

## Output

A JSON object extending the free /api/risk response with: per-signal reasons accompanied by severity ratings, a raw signals object containing token buy/sell tax rates, mint/proxy/hidden-owner boolean flags, and wallet age plus transaction count, plus a source list enumerating the data providers or on-chain sources behind every individual flag.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "wallet",
  "chain": "base",
  "flags": [
   "CLEAN"
  ],
  "address": "0xd8da...6045",
  "reasons": [
   {
    "code": "CLEAN",
    "detail": "no sanctions or scam-list matches",
    "source": "cryptorisk",
    "severity": 0
   }
  ],
  "signals": {
   "tx_count": 42,
   "wallet_age_days": 1135
  },
  "sources": [
   "ofac",
   "scamsniffer",
   "mew"
  ],
  "verdict": "PROCEED",
  "checked_at": "2026-09-03T00:00:00Z",
  "risk_level": "low",
  "risk_score": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uxus-finance-risk-pro-api-8dca6e94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from uxus.finance](https://www.zero.xyz/host/uxus.finance/llms.txt)
