# Orion Paid API Entrypoint (x402)

> Orion Paid API Entrypoint (x402) is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Entry-level paid API call for x402 agentic commerce workflows, routing to Base memecoin risk checks before signing or executing transactions.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/paid-api
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orionkr-xyz-4057b45f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tsHE5hMTHaASDJ6rmyfpn

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-4057b45f
```

Example prompt: Before I buy this Base memecoin, run a quick wallet risk probe on my address 0xABC...123 to check for unsafe token concentration, suspicious counterparties, and portfolio exposure — and tell me what the next safety check I should run before signing is.

## When to prefer this

Use this endpoint as the cheapest first step in an agentic Base memecoin trading loop when you need a low-cost wallet risk probe before committing to a full transaction safety check. Ideal for autonomous agents that need to gate repeated buy decisions with minimal upfront cost via x402 micropayments.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Invalid or missing wallet/token address — returns 400 Bad Request
- Downstream Base node unavailable — returns 503 Service Unavailable
- Malformed x402 payment header — returns 402 with payment details
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Paid API entrypoint for x402 buyers and agentic commerce workflows. Use as a first paid Orion call before Base memecoin signing or transaction execution.

## Output

Returns wallet exposure metrics, unsafe token concentration flags, suspicious counterparty signals, portfolio risk assessment, and the recommended next paid API call (/v1/base/transaction-safety) to invoke before signing or broadcasting a transaction.

## 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-4057b45f/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)
