# AgenticFi Token Social Mentions

> AgenticFi Token Social Mentions 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).

Fetches social media mention data for a given cryptocurrency token symbol

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/social/token-mentions/%7Bsymbol%7D
- 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-token-social-mentions-956ae00a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ACeN1dGucprZGf9sILOyG

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-token-social-mentions-956ae00a
```

Example prompt: How much is PEPE being mentioned on social media right now? Pull the latest social mention data for that token.

## When to prefer this

Use this endpoint when you need social media buzz or mention volume data for a specific cryptocurrency token as part of DeFi research, sentiment analysis, or trading signal workflows. Prefer this over general social listening tools when working within a DeFi agent context that already uses x402 micropayments on Base.

## Known failure modes

- Unknown or unsupported token symbol returns empty or error response
- Payment not attached or insufficient USDC results in 402 Payment Required
- Malformed symbol parameter causes 400 Bad Request
- Rate limiting or network issues may cause 503 or timeout errors

## How this service works

Social volume - Twitter/Farcaster mention count for a token

## Output

Returns social mention data for the specified token symbol, including counts or metrics showing how frequently the token is being discussed across social platforms.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "symbol": "ETH"
  },
  "queryParams": {
   "symbol": "ETH"
  }
 }
}
```

## 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-token-social-mentions-956ae00a/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)
