# 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-15).

Screens Solana DEX token pairs for risk signals including thin liquidity, extreme price moves, sell pressure, very new pairs, and missing profile context.

## Facts

- Endpoint: POST https://x402.agentutility.ai/flagged-tokens
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-flagged-tokens-risk-screen-5a1173b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5dKtG6aDdrDlgd627qL0K

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-5a1173b8 -d '<json body>'
```

Example prompt: Can you pull the latest flagged Solana tokens from the risk screen — I want to see which pairs are showing thin liquidity, extreme price moves, or high sell pressure right now so I can avoid them in my trading bot.

## When to prefer this

Choose this endpoint when you need a fast, pre-screened feed of risky Solana DEX tokens without having to manually query individual token analytics APIs. It's especially useful for trading bots, portfolio monitors, or risk dashboards that need a single call to surface problematic tokens. Prefer it over general DEX APIs when you want opinionated risk flagging rather than raw market data.

## Known failure modes

- Payment not received or insufficient USDC balance — returns 402 Payment Required
- Upstream DEX market data unavailable — may return partial or empty flag list
- Invalid request body format — returns 400 Bad Request
- Rate limit exceeded — returns 429 Too Many Requests
- Token data temporarily stale if DEX feed is delayed

## How this service works

Flagged Solana tokens / risky token feed / DEX market-data risk screen. Same backend as solana-flagged-tokens, exposed under the high-demand buyer slug. Flags thin liquidity, extreme moves, sell pressure, very new pairs, and missing profile context.

## Output

A list of Solana token pairs currently flagged for risk, each annotated with the specific risk signals triggered — such as thin liquidity, extreme price movement, elevated sell pressure, very recent pair creation, or absence of profile metadata. Useful for filtering tokens before trading or investment decisions.

## 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 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."
      }
     }
    },
    "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",
          "items": {
           "type": "string"
          }
         },
         "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"
         }
 
… (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-5a1173b8/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)
