# x402 Token Report — AI Bull/Bear & Rug Analysis

> x402 Token Report — AI Bull/Bear & Rug Analysis is a paid API for AI agents from x402-token-report.dylan-caponi.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates an AI-powered crypto token report with bull case, bear case, confidence score, verdict, and rug pull indicators for a given token symbol or contract address

## Facts

- Endpoint: GET https://x402-token-report.dylan-caponi.workers.dev/report/:token
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-token-report-ai-bull-bear-rug-analysis-4d116982
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_33KvloM8iVrWpLNqHhw9B

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 x402-token-report-ai-bull-bear-rug-analysis-4d116982
```

Example prompt: Can you pull a bull/bear token report for 'solana' and tell me if the AI verdict is bullish or bearish, what the main rug indicators are, and the confidence score?

## When to prefer this

Use this endpoint when an agent needs a quick AI-generated risk and sentiment assessment for a specific crypto token — especially when rug pull detection and a structured bull/bear verdict are required. Prefer this over generic market data APIs when the goal is qualitative AI analysis rather than raw price or volume data.

## Known failure modes

- Unknown or unrecognized token symbol returns an error or empty report
- Invalid contract address format causes a 400-level error
- Payment not included or insufficient USDC via x402 protocol returns a 402 Payment Required
- Upstream AI model unavailability causes a 500 error
- Rate limiting or quota exceeded returns a 429 error

## How this service works

AI-powered token report with bull/bear analysis and rug indicators

## Output

Returns a structured token report including: a string summary of the token, a verdict enum (BULLISH, BEARISH, NEUTRAL, or HIGH_RISK), an array of bull case arguments, an array of bear case arguments, an array of rug pull indicators, and a numeric confidence score between 0 and 1.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "token": {
       "type": "string",
       "description": "Token symbol (e.g., 'ethereum', 'bitcoin') or contract address (0x...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "token": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "verdict": {
       "enum": [
        "BULLISH",
        "BEARISH",
        "NEUTRAL",
        "HIGH_RISK"
       ],
       "type": "string"
      },
      "bear_case": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "bull_case": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "confidence": {
       "type": "number"
      },
      "rug_indicators": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-token-report-ai-bull-bear-rug-analysis-4d116982/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-token-report.dylan-caponi.workers.dev](https://www.zero.xyz/host/x402-token-report.dylan-caponi.workers.dev/llms.txt)
