# Solana Token Watchlist Risk Screen

> Solana Token Watchlist Risk Screen is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Screens a watchlist of Solana tokens for market-data risk signals using DEX Screener profiles, boosts, and pair metrics

## Facts

- Endpoint: POST https://x402.agentutility.ai/solana-token-watchlist
- 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/solana-token-watchlist-risk-screen-c5c0c2d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Il3h3gX33HnPaNKcOvUbH

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 solana-token-watchlist-risk-screen-c5c0c2d7 -d '<json body>'
```

Example prompt: Can you run a risk screen on these Solana tokens I'm watching — So11111111111111111111111111111111111111112 and a couple others — and tell me their risk scores, safety levels, and 24h trading volume from DEX Screener?

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.005 USDC) market-data risk screen for multiple Solana tokens at once, sourced from DEX Screener public metrics. Best for watchlist monitoring, pre-trade safety checks, and DeFi dashboards. Not suitable when you need on-chain holder graph analysis, private wallet data, or guaranteed token safety audits.

## Known failure modes

- Invalid or unrecognized Solana token address returns empty or error response
- Token not listed on DEX Screener returns no data for that token
- DEX Screener API unavailable causes upstream fetch failure
- Malformed request body causes 400-level error
- Payment not settled in USDC causes x402 rejection

## How this service works

Solana token watchlist / high-volume Solana tokens / DEX Screener market-data watchlist / boosted token tracker. Returns recently profiled and actively boosted Solana tokens with best pair, price, liquidity, 24h volume, buy/sell counts, price change, pair age, links, transparent activity score, and market-data risk flags.

## Output

Returns a JSON array of token objects each containing: DEX name, symbol, token address, risk_score (0-100), safety_level (e.g. 'watch'), activity_score, price_usd, price_change_24h_pct, volume_24h_usd, liquidity_usd, 24h buy/sell transaction counts, and any flags. Also includes chain, mode, data source attribution, and a caveat that this is a market-data screen only and does not inspect private holder graphs or guarantee token safety.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max tokens to return. Range 1-50. Default 20."
      },
      "min_liquidity_usd": {
       "type": "number",
       "description": "Optional minimum pair liquidity filter."
      },
      "min_volume_24h_usd": {
       "type": "number",
       "description": "Optional minimum 24h volume filter."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "mode": {
       "type": "string"
      },
      "chain": {
       "type": "string"
      },
      "caveat": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "tokens": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "dex": {
          "type": "string"
         },
         "flags": {
          "type": "array"
         },
         "symbol": {
          "type": "string"
         },
         "txns_24h": {
          "type": "object",
          "properties": {
           "buys": {
            "type": "integer"
           },
           "sells": {
            "type": "integer"
           }
          }
         },
         "price_usd": {
          "type": "number"
         },
         "risk_score": {
          "type": "integer"
         },
         "safety_level": {
          "type": "string"
         },
         "liquidity_usd": {
          "type": "integer"
         },
         "token_address": {
          "type": "string"
         },
         "activity_score": {
          "type": "number"
         },
         "volume_24h_usd": {
          "type": "integer"
         },
         "price_change_24h_pct": {
          "type": "number"
         }
        }
       }
      },
      "returned": {
       "type": "integer
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "watchlist",
  "chain": "solana",
  "caveat": "Market-data risk screen only. Uses public DEX Screener profiles, boosts, and pair metrics; it does not inspect private holder graphs or guarantee token safety.",
  "source": "DEX Screener API (https://docs.dexscreener.com/api/reference)",
  "tokens": [
   {
    "dex": "raydium",
    "flags": [],
    "symbol": "SOL",
    "txns_24h": {
     "buys": 4200,
     "sells": 3900
    },
    "price_usd": 145.23,
    "risk_score": 10,
    "safety_level": "watch",
    "liquidity_usd": 1240000,
    "token_address": "So11111111111111111111111111111111111111112",
    "activity_score": 92.4,
    "volume_24h_usd": 8200000,
    "price_change_24h_pct": 7.4
   }
  ],
  "returned": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-watchlist-risk-screen-c5c0c2d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
