# 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 signal analysis

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/social/sentiment/PEPE
- 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-a9d988af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rZRM6r3WmT_3iQnWPp2mC

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-a9d988af
```

Example prompt: What's the current bullish or bearish sentiment score for PEPE token based on social signals?

## When to prefer this

Use this endpoint when you need a quick, quantified social sentiment signal for a specific crypto token — especially meme coins, DeFi tokens, or major assets. Prefer this over raw social scraping when you want a pre-processed bullish/bearish score without building your own NLP pipeline. Best suited for DeFi agents making trading decisions, market monitoring bots, or dashboards that display community sentiment.

## Known failure modes

- Unknown or unsupported token symbol returns error or empty result
- Payment failure via x402 protocol returns 402 status
- Rate limiting or quota exceeded returns error
- Network timeout if upstream social data is unavailable
- Invalid path parameter format returns 400 or similar error

## How this service works

Bullish/bearish sentiment score per token

## Output

A sentiment score indicating whether market participants are bullish or bearish on the specified token, derived from social data sources. Likely includes a numeric score and/or directional classification.

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