# AgenticFi Social Volume - Token Mention Count

> AgenticFi Social Volume - Token Mention Count is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the social mention count (volume) for a given token symbol across Twitter and Farcaster

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/social/token-mentions/ETH
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-social-volume-token-mention-count-a0b10d27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1IoPi43m44C03jWCDOkxq

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 agenticfi-social-volume-token-mention-count-a0b10d27
```

Example prompt: How many times has SOL been mentioned on Twitter and Farcaster recently? Give me the social volume count for SOL.

## When to prefer this

Use this endpoint when you need quantitative social mention volume for a specific crypto token across Twitter and Farcaster, particularly for DeFi-native tokens. Prefer it over general sentiment APIs when you need raw mention counts rather than sentiment scores, and when you specifically want coverage of both Twitter and the Farcaster crypto-native social graph simultaneously.

## Known failure modes

- Invalid or unrecognized token symbol returns an error or empty result
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or quota exhaustion returns 429 Too Many Requests
- Network or upstream social data source unavailability returns 503 Service Unavailable

## How this service works

Social volume - Twitter/Farcaster mention count for a token

## Output

Returns the social volume data for the specified token symbol, including mention counts aggregated from Twitter and Farcaster, useful for gauging community interest and trending activity around a token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "title": "symbol (required)",
       "description": "Required. Token symbol.\nTry one of these 10 examples: BTC, ETH, SOL, LINK, UNI, AAVE, MKR, DOGE, PEPE, ARB"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "title": "symbol (required)",
       "description": "Required. Token symbol.\nTry one of these 10 examples: BTC, ETH, SOL, LINK, UNI, AAVE, MKR, DOGE, PEPE, ARB"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-social-volume-token-mention-count-a0b10d27/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
