# X402 Market Sentiment Analyzer

> X402 Market Sentiment Analyzer is a paid API for AI agents from x402.feld-feder.at, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Analyzes text to classify its market sentiment as positive, negative, or neutral with a confidence score, payable per-request via x402.

## Facts

- Endpoint: POST https://x402.feld-feder.at/v1/text/market-sentiment
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-market-sentiment-analyzer-8a9c7fe0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ui3QMmjhTTsthulkiXja0

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 x402-market-sentiment-analyzer-8a9c7fe0 -d '<json body>'
```

Example prompt: Analyze the market sentiment of this text for me: 'Q3 earnings beat expectations with record revenue growth, signaling strong investor confidence ahead of the holiday season.' Tell me whether it's positive, negative, or neutral and give me a confidence score.

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call market sentiment classification on financial or market-related text without committing to a subscription. It is well-suited for AI agents that need to programmatically gauge bullish/bearish tone in news headlines, social posts, or analyst commentary, and it returns a machine-readable score alongside the label, making it easy to integrate into downstream decision pipelines.

## Known failure modes

- Empty or missing text input returns an error
- Malformed request body results in a 400 response
- Insufficient x402 payment balance causes a payment-required failure
- Very long text inputs may exceed processing limits
- Non-English or ambiguous text may yield lower-confidence scores

## How this service works

Pay-per-request data tools for AI agents.

## Output

Returns a JSON object containing a sentiment label (positive, negative, or neutral), a numeric score, per-item breakdowns with individual labels and scores, aggregate counts for each sentiment category, and a disclaimer noting that the output is deterministic research data and not financial advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "title": "MarketSentimentRequest",
     "required": [
      "texts"
     ],
     "properties": {
      "texts": {
       "type": "array",
       "items": {
        "type": "string",
        "maxLength": 1000,
        "minLength": 1
       },
       "title": "Texts",
       "maxItems": 100,
       "minItems": 1
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "ResponseEnvelope[MarketSentimentResult]",
     "required": [
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean",
       "const": true,
       "title": "Ok",
       "default": true
      },
      "data": {
       "type": "object",
       "title": "MarketSentimentResult",
       "required": [
        "text_count",
        "average_score",
        "label",
        "positive_count",
        "neutral_count",
        "negative_count",
        "items",
        "disclaimer"
       ],
       "properties": {
        "items": {
         "type": "array",
         "items": {
          "type": "object",
          "title": "SentimentTextResult",
          "required": [
           "index",
           "score",
           "label"
          ],
          "properties": {
           "index": {
            "type": "integer",
            "title": "Index"
           },
           "label": {
            "enum": [
             "positive",
             "neutral",
             "negative"
            ],
            "type": "string",
            "title": "Label"
           },
           "score": {
            "type": "number",
            "title": "Score"
           }
          }
         },
         "title": "Items"
        },
        "label": {
         "enum": [
          "positive",
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "items": [
    {
     "index": 0,
     "label": "positive",
     "score": 1
    }
   ],
   "label": "positive",
   "disclaimer": "Deterministic research output only; not financial advice or an order signal.",
   "text_count": 1,
   "average_score": 1,
   "neutral_count": 0,
   "negative_count": 0,
   "positive_count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-market-sentiment-analyzer-8a9c7fe0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.feld-feder.at](https://www.zero.xyz/host/x402.feld-feder.at/llms.txt)
