# AgentUtility Trending Solana Tokens Feed

> AgentUtility Trending Solana Tokens Feed 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 a ranked feed of trending and boosted Solana tokens ordered by liquidity, volume, transactions, boost activity, and price movement.

## Facts

- Endpoint: POST https://x402.agentutility.ai/trending
- 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/agentutility-trending-solana-tokens-feed-815459bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GlgYcDZEVZO0ryMiACh4Q

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 agentutility-trending-solana-tokens-feed-815459bb -d '<json body>'
```

Example prompt: What are the top trending Solana tokens and meme coins right now — ranked by liquidity, volume, and boost activity?

## When to prefer this

Choose this endpoint when you need a pre-ranked, multi-signal feed of trending Solana tokens — especially boosted and meme coins — rather than raw on-chain data you'd have to rank yourself. Prefer this over building custom Solana RPC queries when you need liquidity, volume, transaction count, boost activity, and price movement aggregated in one call. Best for trading research, market monitoring agents, and alpha discovery workflows where freshness and multi-factor ranking matter.

## Known failure modes

- Payment failure (x402 USDC not settled) returns 402 with payment required details
- Empty result set if no tokens meet boost/activity thresholds at query time
- Upstream data lag during high-congestion Solana network periods
- Malformed POST body returns 400 with validation error
- Timeout if Solana RPC or boost data aggregator is temporarily unavailable

## How this service works

Trending Solana tokens / boosted token feed / active meme coin discovery. Same backend as solana-trending-tokens, exposed under the high-demand buyer slug. Ranks boosted Solana tokens by liquidity, volume, txns, boost activity, and price movement.

## Output

A ranked list of trending Solana tokens, each including token name, contract address, liquidity metrics, 24h trading volume, transaction counts, boost activity score, and price movement percentage — ordered by composite ranking across all signals.

## 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 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"
         },
         "activity_score": {
          "type": "number"
         }
        }
       }
      },
      "caveat": {
       "type": "string"
      },
      "source": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "trending",
  "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/agentutility-trending-solana-tokens-feed-815459bb/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)
