# Orion Paid Token/Address Scan

> Orion Paid Token/Address Scan is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Performs a comprehensive paid risk scan on a Base token or address, covering rug risk, fake liquidity, pre-trade safety, swap safety, and memecoin entry guard.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/scan/paid
- Price: $0.02/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-c90a5e3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D1Vg9k0gx6psme-ZlMJm-

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-c90a5e3a
```

Example prompt: Before I swap into this Base memecoin at address 0xABC123, run a full Orion paid scan on it — check for rug risk, fake liquidity, and whether it's safe to enter right now.

## When to prefer this

Use this endpoint when you need a comprehensive, paid-tier risk scan covering multiple risk dimensions (rug, liquidity, swap safety, memecoin entry) in a single call before executing a Base token trade or swap. Prefer this over cheaper/narrower sibling endpoints when you need the full risk picture rather than a single-dimension check.

## Known failure modes

- Invalid or non-Base token/address returns an error or empty result
- Payment failure via x402 causes 402 response blocking the scan
- Token not yet indexed on Base returns incomplete risk data
- Network timeout on-chain data fetch returns partial result
- Malformed address input returns validation error

## How this service works

Orion paid token/address scan: Base token risk, rug check, fake liquidity check, pre-trade risk, swap safety, and memecoin entry guard.

## Output

Returns a structured risk report including Base token risk flags, rug check result, fake liquidity detection, pre-trade risk assessment, swap safety verdict, and a memecoin entry guard signal (PASS/WAIT/FAIL style).

## 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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orionkr-xyz-c90a5e3a/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)
