# Base Sentinel Token Risk Analysis

> Base Sentinel Token Risk Analysis is a paid API for AI agents from demo.x402alpha.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Performs AI-powered comprehensive risk analysis of a crypto token using on-chain metrics, social sentiment, and technical analysis to produce a risk score and trading recommendation

## Facts

- Endpoint: GET https://demo.x402alpha.app/api/token-analysis
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-sentinel-token-risk-analysis-4aa20f06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MJKWF3l26LxD7Kfkguytl

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 base-sentinel-token-risk-analysis-4aa20f06
```

Example prompt: Can you run a full risk analysis on the token at address 0x4200000000000000000000000000000000000042 — I want to see the risk score, whether I should buy, hold, or avoid it, and what the on-chain metrics and social sentiment look like?

## When to prefer this

Use this endpoint when you need a holistic, multi-dimensional risk assessment of a specific token — combining on-chain analytics, social sentiment, and technical chart analysis in a single call. Prefer this over standalone price feeds or single-metric APIs when you need an AI-synthesized recommendation and risk reasoning rather than raw data alone.

## Known failure modes

- Invalid or malformed token address returns an error (non-0x-prefixed or wrong length)
- Token address not found on-chain results in empty or failed analysis
- Network or upstream data provider outage causes incomplete metrics
- Newly deployed tokens with insufficient on-chain history may return low-confidence scores
- Payment failure (insufficient USDC balance) blocks the request

## How this service works

AI-powered comprehensive token risk analysis with on-chain metrics, social sentiment, and technical analysis

## Output

Returns a risk score (0-100), a BUY/HOLD/SELL/AVOID recommendation, AI reasoning, and a breakdown of social score, on-chain score, and technical score, plus token data including price, market cap, 24h volume, price change, liquidity, buy/sell ratio, total holders, whale activity, chart pattern, social sentiment from Twitter and Reddit, advanced on-chain metrics (MVRV, NVT, TVL, NUPL, holder distribution, exchange flows), and optionally top tweets with engagement metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tokenAddress": {
   "type": "string (required): Token address to analyze (0x-prefixed hex string)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "success": "boolean",
 "analysis": {
  "breakdown": {
   "riskFactors": "string[]",
   "socialScore": "number (0-100)",
   "onChainScore": "number (0-100)",
   "technicalScore": "number (0-100)"
  },
  "reasoning": "string",
  "riskScore": "number (0-100)",
  "recommendation": "string: BUY | HOLD | SELL | AVOID"
 },
 "timestamp": "string (ISO 8601)",
 "tokenData": {
  "price": "number",
  "marketCap": "number (optional)",
  "volume24h": "number (optional)",
  "chartPattern": "string (optional)",
  "onChainMetrics": {
   "liquidity": "string",
   "buySellRatio": "number",
   "totalHolders": "number",
   "whaleActivity": "string"
  },
  "priceChange24h": "number (optional)",
  "socialSentiment": {
   "reddit": "number",
   "overall": "number",
   "twitter": "number"
  },
  "advancedOnChainMetrics": "object (optional): Advanced metrics including active addresses, transaction volume, exchange flows, holder distribution, MVRV, NUPL, TVL, whale activity, HODL waves, NVT"
 },
 "topTweets": "array (optional): Array of top tweets with engagement metrics",
 "tokenAddress": "string"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-sentinel-token-risk-analysis-4aa20f06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from demo.x402alpha.app](https://www.zero.xyz/host/demo.x402alpha.app/llms.txt)
