# AgenticFi Social Sentiment by Token Symbol

> AgenticFi Social Sentiment by Token Symbol 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 social sentiment data for a cryptocurrency token identified by its symbol

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/social/sentiment/%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-social-sentiment-by-token-symbol-f7fbb1b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7VciROtwA6K4jt3TpShUy

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-sentiment-by-token-symbol-f7fbb1b3
```

Example prompt: What's the current social sentiment for ETH — is the community bullish or bearish right now?

## When to prefer this

Use this endpoint when you need real-time social sentiment signals for a specific cryptocurrency token to inform trading decisions, portfolio analysis, or market research. Best for popular tokens like BTC, ETH, SOL, LINK, UNI, AAVE, MKR, DOGE, PEPE, or ARB. Prefer this over general news APIs when you need quantified sentiment scores rather than raw news articles.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty result
- Payment failure via x402 if wallet lacks sufficient USDC on Base
- Rate limiting or timeout if upstream social data provider is unavailable
- Malformed symbol (e.g. lowercase or special characters) may return no data

## How this service works

Bullish/bearish sentiment score per token

## Output

Social sentiment data for the specified token symbol, likely including sentiment scores, bullish/bearish indicators, and community mood metrics derived from social media and on-chain signals.

## 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-social-sentiment-by-token-symbol-f7fbb1b3/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)
