# x402-seller Onchain Trending Tokens

> x402-seller Onchain Trending Tokens is a paid API for AI agents from x402-seller-m8nx.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns trending onchain tokens for a given blockchain chain, useful for identifying hot assets in real time.

## Facts

- Endpoint: GET https://x402-seller-m8nx.onrender.com/onchain/trending
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-seller-onchain-trending-tokens-f80460fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_swgRmdB5MeIgOp1D73E_C

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 x402-seller-onchain-trending-tokens-f80460fb
```

Example prompt: What tokens are currently trending onchain on Base — give me the live list so I can decide what to investigate next.

## When to prefer this

Choose this endpoint when your agent needs a quick, single-call snapshot of which tokens are trending on a specific chain without assembling data from multiple free APIs. Ideal for autonomous trading agents that need to seed a watchlist or identify fresh alpha before doing deeper rug-screening via the /vet or /alpha/launches endpoints on the same service.

## Known failure modes

- Unsupported or invalid chain identifier returns an error or empty list
- Payment failure (insufficient USDC balance) results in 402 response blocking the call
- Endpoint may return stale data if underlying data feeds are delayed
- Rate limiting or server unavailability on Render free tier during high traffic

## How this service works

Rug protection and decision-ready intelligence for autonomous trading agents. Keyless by design: no signup, no API key — pay a cent per request in USDC (x402). The /alpha/launches LAUNCH RADAR discovers what just launched AND rug-screens every candidate in one call, ranked per-token verdicts — the proactive 'give me safe alpha' call. /vet gives a single-token go/no-go in ONE call by fusing a COMPOSITE rug score (GoPlus static analysis + a LIVE Honeypot.is buy/sell simulation + serial-rugger check) with our SELF-COLLECTED liquidity-drain trend — a rug-in-progress signal that exists nowhere for free because it requires collecting reserves over time. One call is cheaper than the inference tokens you'd burn stitching 4 free APIs, and it stops your agent losing its whole position to a honeypot. Also: /onchain/liquidity drain detector, /screen batch watchlist check, /brief market regime, and raw feeds (prices, stocks, DEX pools, launches, perp funding/OI).

## Output

Returns a ranked list of currently trending onchain tokens for the specified chain, likely including token addresses, names, symbols, and activity or volume metrics that indicate trending status.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "eth",
        "solana",
        "bsc",
        "polygon",
        "arbitrum",
        "optimism"
       ],
       "type": "string",
       "default": "base"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "count": 15,
  "pools": [
   {
    "name": "BRIAN / ETH",
    "price_usd": 0.01,
    "liquidity_usd": 250000,
    "price_change_24h_pct": 12.3
   }
  ],
  "source": "geckoterminal"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-seller-onchain-trending-tokens-f80460fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-m8nx.onrender.com](https://www.zero.xyz/host/x402-seller-m8nx.onrender.com/llms.txt)
