# Orion Wallet Risk Probe

> Orion Wallet Risk Probe is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a wallet exposure and portfolio risk snapshot including unsafe token concentration, suspicious counterparties, and a recommended next API call for transaction safety checks.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/wallet-risk
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orionkr-xyz-01a66c15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ndE-ZR8zdbCqhFM14pFr7

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 orionkr-xyz-01a66c15
```

Example prompt: Before I interact with this wallet 0xAbc123…, can you run a quick risk probe on it to check for unsafe token concentration, suspicious counterparties, and overall portfolio exposure on Base?

## When to prefer this

Use this endpoint as a cheap first-pass wallet screening step before committing to a deeper transaction safety check. Ideal when an autonomous agent needs to quickly triage wallet risk at $0.005 per call without supplying complex query parameters, especially in Base memecoin or DeFi trading workflows.

## Known failure modes

- Invalid or missing wallet address returns a 400 error
- Payment not received or insufficient USDC results in 402 payment required
- Wallet address not found on Base returns empty or null risk data
- Network timeout or Base RPC unavailability causes a 503
- Rate limiting if too many probes are submitted in quick succession

## How this service works

Cheapest starter checkout for narrow wallet-risk probes. Pay 0.005 USDC once; no query params required for a catalog-probe sample. Returns wallet exposure, unsafe token concentration, suspicious counterparties, portfolio risk, and the exact second paid call /v1/base/transaction-safety before signing or broadcasting.

## Output

Returns wallet exposure details including concentration of unsafe or suspicious tokens, flagged counterparties, an overall portfolio risk rating, and a pointer to the /v1/base/transaction-safety endpoint for deeper pre-transaction checks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "const": "base"
      },
      "wallet": {
       "type": "string"
      },
      "address": {
       "type": "string",
       "description": "Base wallet, token, or contract address."
      },
      "amountIn": {
       "type": "string"
      },
      "tokenAddress": {
       "type": "string",
       "description": "Optional Base token contract address."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [],
     "properties": {
      "success": {
       "type": "boolean"
      },
      "verdict": {
       "type": "string"
      },
      "risk_score": {
       "type": "number"
      },
      "blocking_flags": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "required_next_call": {
       "type": "string"
      },
      "verdict_ttl_seconds": {
       "type": "number"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9",
  "success": true,
  "verdict": "WAIT",
  "endpoint": "/v1/base/wallet-risk",
  "risk_score": 42,
  "blocking_flags": [],
  "required_next_call": "/v1/base/transaction-safety",
  "recommended_next_action": "If context changed, call /v1/base/transaction-safety; if signing real capital, call /v1/base/before-signing first."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orionkr-xyz-01a66c15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orionkr.xyz](https://www.zero.xyz/host/orionkr.xyz/llms.txt)
