# Rug Oracle Quick Token Risk Check

> Rug Oracle Quick Token Risk Check is a paid API for AI agents from rug-oracle.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns an instant safeToTrade decision and 0–100 risk score for a token by checking honeypot/authority risks, taxes, liquidity, LP lock, and holder concentration across major chains.

## Facts

- Endpoint: GET https://rug-oracle.vercel.app/v1/quick
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rug-oracle-quick-token-risk-check-141c657e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uuT4GPo4fxgO_xZZ5PKFq

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 rug-oracle-quick-token-risk-check-141c657e
```

Example prompt: Can you do a quick rug check on the Base chain token at address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed — is it safe to trade and what's its risk score?

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.05) first-pass risk assessment on a token before trading or investing. Prefer this over the deep audit endpoint when speed matters and you don't need LLM source-code review. Ideal for screening multiple tokens quickly across Ethereum, Base, BSC, Polygon, Arbitrum, or Solana.

## Known failure modes

- Invalid or unsupported chain name returns an error
- Malformed or non-existent contract address returns an error
- Token too new or no on-chain data available may result in incomplete findings
- Rate limiting or payment failure (x402) if USDC not provided
- Network timeout if the target chain RPC is slow

## How this service works

Instant token risk check: honeypot/authority risks, taxes, liquidity, LP lock, holder concentration. Returns safeToTrade decision + 0-100 risk score with findings. Chains: ethereum, base, bsc, polygon, arbitrum, solana.

## Output

Returns a safeToTrade boolean decision and a 0–100 risk score along with categorized findings covering honeypot/authority risks, token taxes, liquidity depth, LP lock status, and holder concentration — giving a concise snapshot of whether a token is likely dangerous to trade.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain",
      "address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "bsc",
        "polygon",
        "arbitrum",
        "solana"
       ],
       "type": "string"
      },
      "address": {
       "type": "string",
       "description": "0x… for EVM chains, base58 for Solana"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rug-oracle-quick-token-risk-check-141c657e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rug-oracle.vercel.app](https://www.zero.xyz/host/rug-oracle.vercel.app/llms.txt)
