# x402.911fund.io Trending Token & Sector Detection

> x402.911fund.io Trending Token & Sector Detection is a paid API for AI agents from x402.911fund.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Detects trending crypto tokens and sectors using narrative clustering and social momentum signals, with optional Twitter/X sentiment enrichment.

## Facts

- Endpoint: GET https://x402.911fund.io/alpha/trending
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-911fund-io-a91a7eda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__VHoRBT9qApCe4pOqaWDj

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-911fund-io-a91a7eda
```

Example prompt: Show me the top 10 trending crypto tokens and sectors right now, including Twitter sentiment, so I can see which narratives are gaining the most social momentum.

## When to prefer this

Use this endpoint when you need real-time trending crypto token and sector intelligence with narrative clustering and social momentum scoring — especially when Twitter/X sentiment enrichment is needed alongside market trend data. Prefer over generic news endpoints when the goal is to identify which tokens or themes are gaining traction socially right now.

## Known failure modes

- Invalid category filter returns empty results or 400 error
- limit out of range (1-50) returns validation error
- Twitter sentiment add-on may return partial data if social API is rate-limited
- Payment not fulfilled returns 402 Payment Required
- Response truncated for very large result sets

## How this service works

Crypto intelligence API — 10+ live sources in one call. Token data, X sentiment, prediction markets, macro economics. Structured JSON, not essays. From $0.03/query with USDC.

## Output

A ranked list of trending tokens and market sectors, grouped by narrative clusters and scored by social momentum, optionally including Twitter/X sentiment signals per token or sector.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "twitter": true,
   "category": "trending"
  }
 }
}
```

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Number of results"
      },
      "twitter": {
       "type": "boolean",
       "description": "Include Twitter/X sentiment addon where applicable"
      },
      "category": {
       "type": "string",
       "description": "Optional category filter"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-911fund-io-a91a7eda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.911fund.io](https://www.zero.xyz/host/x402.911fund.io/llms.txt)
