# AgenticFi Social Sentiment Score

> AgenticFi Social Sentiment Score 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 a bullish/bearish sentiment score for a given crypto token based on social signals

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/social/sentiment/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-sentiment-score-5157da80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_76-HXUIymP-NIFBvpaYJx

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-score-5157da80
```

Example prompt: What's the current bullish/bearish social sentiment score for ETH right now?

## When to prefer this

Use this endpoint when you need a quick, quantified social sentiment signal for a specific crypto token to inform trading decisions, market analysis, or DeFi strategy — especially when working within an AI agent pipeline that can handle x402 micropayments.

## Known failure modes

- Unsupported token symbol returns an error or empty result
- Rate limiting if called too frequently without payment
- Payment failure via x402 protocol blocks the response
- Network timeout from the defi-api.agenticfi.wtf host

## How this service works

Bullish/bearish sentiment score per token

## Output

Returns a numeric sentiment score indicating bullish or bearish community sentiment for the requested token, derived from social media signals.

## 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-score-5157da80/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)
