# Rug Oracle Deep Token Risk Audit

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

Performs a deep smart contract security audit combining standard risk checks with LLM-powered source code review to detect hidden rug mechanics like disguised mints, sell restrictions, fake renounce, and fee backdoors.

## Facts

- Endpoint: GET https://rug-oracle.vercel.app/v1/deep
- Price: $0.35/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-deep-token-risk-audit-9231cdb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w78gRs7caDtwWo3XmRUgP

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-deep-token-risk-audit-9231cdb8
```

Example prompt: Run a deep rug audit on the Ethereum token at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 — I want the full LLM source code review to catch any hidden mints, fake renounce, sell restrictions, or fee backdoors.

## When to prefer this

Choose this endpoint when you need the most thorough possible rug pull analysis, especially before investing significant funds. The LLM source code review catches obfuscated and novel rug mechanics that heuristic-only scanners miss. Prefer this over the quick audit when hidden code patterns like disguised mints, fake renounce, or fee backdoors are a concern.

## Known failure modes

- Invalid or unrecognized contract address returns error
- Unverified contract source code on EVM chains may limit LLM review depth
- Solana tokens fall back to authority analysis only (no full source review)
- Unsupported chain returns validation error
- Rate limiting or payment failure (x402) blocks the request
- Token address not deployed on specified chain

## How this service works

Deep token risk audit: everything in quick PLUS LLM source-code review for hidden rug mechanics (disguised mints, sell restrictions, fake renounce, fee backdoors). Params: chain, address.

## Output

A comprehensive risk report including standard token risk metrics plus an LLM-powered analysis of the contract source code flagging hidden rug mechanics such as disguised mint functions, sell restrictions, fake ownership renouncement, and fee backdoor vulnerabilities. For Solana tokens, falls back to authority analysis when source code is unavailable.

## 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-deep-token-risk-audit-9231cdb8/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)
