# Social Trending Crypto Tickers

> Social Trending Crypto Tickers is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a ranked cross-source attention index of crypto tickers heating up across Farcaster cashtag mentions, crypto news, and GDELT macro coverage, with velocity scores and cast sentiment.

## Facts

- Endpoint: GET https://api.agentstools.dev/social/trending
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/social-trending-crypto-tickers-3cbf686e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nkijp1M1DiOuzkQHRB2zW

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 social-trending-crypto-tickers-3cbf686e
```

Example prompt: Show me the top 20 crypto tickers heating up across Farcaster and crypto news right now — I want attention scores, velocity, and which channels are driving each one.

## When to prefer this

Choose this endpoint when you need a clean, pre-aggregated social attention signal for crypto tickers that fuses multiple ToS-safe sources (Farcaster, crypto news, GDELT) without needing to build your own aggregation pipeline. It is ideal over raw feeds when you want ranked, velocity-weighted results with sentiment rather than raw mention counts, and when Twitter/Reddit data is not required or permitted.

## Known failure modes

- No tickers returned if there is insufficient recent social activity
- Rate limit or payment failure (x402) if USDC payment is not provided or insufficient
- Invalid limit value (outside 1–40 range) returns a validation error
- Service unavailability during Farcaster or GDELT data ingestion downtime

## How this service works

What crypto tickers are heating up across crypto social right now: a ranked cross-source attention index fusing Farcaster cashtag mentions across curated crypto channels (keyless open-protocol hub) with crypto-news mention counts and a GDELT macro coverage-trend. Each row carries an attention score, a recent-vs-prior velocity, the channels driving it and cast sentiment — signal, not a raw feed. ToS-clean (no Twitter/Reddit).

## Output

A ranked list of crypto ticker symbols, each with an attention score (cross-source fused index), a velocity metric (recent vs prior period), the Farcaster channels driving mentions, cast sentiment signal, and crypto-news mention counts. Results are ordered by descending attention, limited to the requested count (default 15, max 40).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 40,
       "minimum": 1,
       "description": "Max ranked tickers to return (default 15)."
      },
      "window": {
       "type": "string",
       "description": "Reserved velocity-window hint; velocity uses recency-rank windows (see response)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/social-trending-crypto-tickers-3cbf686e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
