# Solana Token Safety Watchlist

> Solana Token Safety Watchlist 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).

Returns real-time Solana token market data including price, liquidity, volume, transactions, price change, pair age, activity score, and risk flags for a watchlist of tokens via DEX Screener backend.

## Facts

- Endpoint: POST https://x402.agentutility.ai/watchlist
- 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-token-safety-watchlist-c38b3856
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C5WvHCXHjPK0wBez2RB9b

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-safety-watchlist-c38b3856 -d '<json body>'
```

Example prompt: Pull the latest market data and risk flags for these Solana token addresses — BONK, WIF, and POPCAT — and tell me which ones have low liquidity or any safety warnings.

## When to prefer this

Choose this endpoint when you need real-time Solana-specific token market data combined with risk/safety screening in a single call. Prefer it over raw DEX Screener API access when you want a pre-packaged, agent-friendly x402-payable endpoint that bundles price, liquidity, volume, and risk flags together. Best suited for DeFi agents performing pre-trade safety checks or ongoing portfolio monitoring on Solana tokens.

## Known failure modes

- Token address not found on Solana DEX Screener — returns empty or error response
- Invalid or malformed token address input causes request failure
- Token too new or unlisted — no market data available yet
- Rate limiting or upstream DEX Screener API unavailability
- Payment failure via x402 USDC settlement blocks the request

## How this service works

Solana token watchlist / active token safety watchlist. Same DEX Screener market-data backend as solana-token-watchlist, exposed under the high-demand buyer slug. Returns price, liquidity, 24h volume, txns, price change, pair age, links, activity score, and risk flags.

## Output

Returns a structured response per token including current price, liquidity depth, 24-hour volume and transaction count, price change percentage, pair creation age, external links, an activity score, and risk flags indicating potential safety concerns such as low liquidity, honeypots, or suspicious trading patterns.

## 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-safety-watchlist-c38b3856/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)
