# Solana Flagged Tokens Risk Screen

> Solana Flagged Tokens 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).

Returns a feed of recently active Solana tokens flagged for risk signals such as thin liquidity, volume-to-liquidity imbalance, extreme price moves, sell pressure, very new pair age, or missing metadata.

## Facts

- Endpoint: POST https://x402.agentutility.ai/solana-flagged-tokens
- 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-flagged-tokens-risk-screen-ddb20197
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TUN74dA8fpX6hzTYbgAPR

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-flagged-tokens-risk-screen-ddb20197 -d '<json body>'
```

Example prompt: Pull the latest feed of flagged Solana tokens — I want to see which ones are showing risk signals like thin liquidity, huge volume vs liquidity gaps, extreme price swings, or missing pair data so I can avoid them.

## When to prefer this

Choose this endpoint when you need a fast, pre-computed risk screen of Solana tokens based on observable market signals (liquidity, volume, price action, pair age, metadata completeness) without needing to query individual token contracts or holder graphs. Ideal for filtering meme coins before trading, building risk dashboards, or running automated daily safety checks on new Solana DEX pairs. Prefer this over raw DEX Screener queries when you want a curated, agent-friendly flagged feed in a single call.

## Known failure modes

- Empty result set if no tokens are currently flagged
- Stale data if DEX Screener upstream feed is delayed
- HTTP 402 payment required if USDC payment not included or insufficient
- Malformed request body returns 400 error
- Transient upstream data unavailability returns 503 or empty response

## How this service works

Solana flagged tokens / risky Solana token feed / meme coin risk screen / DEX Screener risk flags. Returns recently active Solana tokens flagged for thin liquidity, volume far above liquidity, extreme 24h price move, sell pressure, very new pair age, missing profile context, or missing pair data. Market-data screen only, no private holder graph.

## Output

A list of recently active Solana tokens that have triggered one or more risk flags, including details such as the risk flag type (thin liquidity, volume-to-liquidity ratio anomaly, extreme 24h price move, sell pressure, very new pair age, missing profile context, missing pair data), along with associated market data per token/pair. No private holder graph data is included — this is a market-data screen only.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max flagged 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."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "mode": {
       "type": "string"
      },
      "chain": {
       "type": "string"
      },
      "returned": {
       "type": "integer"
      },
      "tokens": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "token_address": {
          "type": "string"
         },
         "symbol": {
          "type": "string"
         },
         "dex": {
          "type": "string"
         },
         "price_usd": {
          "type": "number"
         },
         "liquidity_usd": {
          "type": "integer"
         },
         "volume_24h_usd": {
          "type": "integer"
         },
         "txns_24h": {
          "type": "object",
          "properties": {
           "buys": {
            "type": "integer"
           },
           "sells": {
            "type": "integer"
           }
          }
         },
         "price_change_24h_pct": {
          "type": "number"
         },
         "safety_level": {
          "type": "string"
         },
         "risk_score": {
          "type": "integer"
         },
         "flags": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "activity_score": {
          "type": "number"
         }
        }
       }
      },
      "caveat": {
       "type": "string"
      },
      "source": {
       "type": 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "flagged",
  "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": [
     "thin_liquidity",
     "sell_pressure"
    ],
    "symbol": "SOL",
    "txns_24h": {
     "buys": 4200,
     "sells": 3900
    },
    "price_usd": 145.23,
    "risk_score": 45,
    "safety_level": "risky",
    "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-flagged-tokens-risk-screen-ddb20197/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)
