# LoneStarOracle WalletRisk

> LoneStarOracle WalletRisk is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns a 0–10 risk score and detailed risk flags for any EVM wallet address, covering sanctions, phishing, mixing, money laundering, and other on-chain threat signals

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_wallet_lonestaroracle_xyz
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lonestaroracle-walletrisk-f71f57d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_okYFvCxi2mGMCZL7oBIiF

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 lonestaroracle-walletrisk-f71f57d3
```

Example prompt: Can you check the risk score for Ethereum wallet 0x1da5821544e25c636c1417ba96ade4cf6d2f9b5a on the ETH chain — I want to know if it's sanctioned, linked to a mixer, or flagged for anything suspicious before I interact with it?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal EVM wallet risk score backed by GoPlus Security and live RPC data across Ethereum, Base, BSC, Arbitrum, and Polygon. It is ideal for pre-transaction screening, DeFi counterparty vetting, AML compliance workflows, or any scenario where you need structured risk flags (sanctions, mixer exposure, phishing, darkweb links) in a single call. Prefer this over generic blockchain explorers when you need an actionable 0–10 score with labeled risk categories rather than raw transaction data.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain returns an error (only ETH, Base, BSC, Arbitrum, Polygon supported)
- Address with zero on-chain history may return minimal data and low confidence score
- RPC or GoPlus upstream downtime may cause timeouts or degraded results
- Missing required wallet/address parameter causes a bad request response

## How this service works

EVM wallet risk scoring — transaction patterns, exposure analysis, suspicious activity

## Output

A JSON object containing: risk_score (0–10 integer), risk_label (e.g. 'critical'), risk_flags array (e.g. ['sanctioned','stealing_attack','blacklist_doubt']), flag_sources (e.g. 'SlowMist,BlockSec'), balance, balance_symbol, tx_count, is_contract boolean, chain, address, and a human-readable summary string

## Request schema (JSON Schema)

```json
{
 "name": "LoneStarOracle — WalletRisk",
 "tags": [
  "wallet",
  "risk",
  "security",
  "scam",
  "sanctions",
  "defi",
  "aml"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "data",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "title": "Chain",
       "default": "eth"
      },
      "token": {
       "type": "string",
       "title": "Token"
      },
      "wallet": {
       "type": "string",
       "title": "Wallet"
      },
      "address": {
       "type": "string",
       "title": "Address"
      },
      "contract": {
       "type": "string",
       "title": "Contract"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "chain": "eth",
     "address": "0x1da5821544e25c636c1417ba96ade4cf6d2f9b5a",
     "balance": 0,
     "summary": "0x1da58215...f9b5a on ETH: Risk 10/10 (critical) | Flags: sanctioned, stealing_attack",
     "tx_count": 0,
     "risk_flags": [
      "sanctioned",
      "stealing_attack",
      "blacklist_doubt"
     ],
     "risk_label": "critical",
     "risk_score": 10,
     "is_contract": true,
     "flag_sources": "SlowMist,BlockSec",
     "balance_symbol": "ETH"
    }
   }
  }
 },
 "description": "On-chain wallet risk scorer for EVM addresses. Returns a 0–10 risk score and list of flags: sanctioned, mixer, phishing, darkweb transactions, money laundering, stealing attack, and more. Powered by GoPlus Security + live RPC data. Supports Ethereum, Base, BSC, Arbitrum, and Polygon."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lonestaroracle-walletrisk-f71f57d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
