# SignalsFeed Financial News Sentiment API

> SignalsFeed Financial News Sentiment API is a paid API for AI agents from signalsfeed.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns structured financial news sentiment signals including market mood, bullish/bearish tone, risk-on/risk-off shifts, and policy-driven sentiment changes with credibility scoring

## Facts

- Endpoint: GET https://signalsfeed.com/api/v1/sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalsfeed-com-991b0e1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8pF7jdZi5WhVA42ih5bOn

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 signalsfeed-com-991b0e1b
```

Example prompt: What's the current market sentiment from financial news — is it bullish or bearish, and are we in a risk-on or risk-off environment right now? Include the credibility score on whatever signal you get back.

## When to prefer this

Use this endpoint when you need structured, scored financial news sentiment rather than raw headlines — especially when you need a clear bullish/bearish or risk-on/risk-off classification with a credibility signal attached, and when you want sentiment that captures policy-driven tone shifts (e.g. central bank announcements). Prefer this over general news APIs when the output must be machine-readable and actionable for trading or macro analysis workflows.

## Known failure modes

- No recent news available for the requested topic returns empty or low-confidence signals
- Rate limit exceeded or payment failure via x402 returns 402 Payment Required
- Invalid query parameters return 400 Bad Request
- Upstream news data unavailability may return 503 Service Unavailable
- Credibility scores may be low when news coverage is thin or contradictory

## How this service works

Financial news sentiment API for AI agents. Covers market mood, bullish or bearish tone, risk-on or risk-off shifts, and policy-driven sentiment changes. Structured signals with credibility scoring. Pay-per-request via x402; free discovery available.

## Output

Returns structured sentiment signals indicating bullish or bearish tone, risk-on or risk-off market posture, policy-driven sentiment shifts, and a credibility score for each signal, all derived from current financial news sources

## Example request

```json
{
 "limit": 10,
 "since": "2024-01-15T00:00:00Z",
 "domain": "macro",
 "preview": false,
 "quality_status": "premium"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": false,
     "properties": {
      "ids": {
       "type": "string",
       "description": "Comma-separated article UUIDs. Max 20 per paid request."
      },
      "limit": {
       "type": "integer",
       "minimum": 1,
       "maximum": 20,
       "default": 20
      }
     },
     "required": [
      "ids"
     ]
    },
    "body": {
     "type": "object",
     "additionalProperties": false,
     "properties": {}
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "signals": [],
     "count": 0,
     "format": "full"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 0,
  "format": "full",
  "signals": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalsfeed-com-991b0e1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalsfeed.com](https://www.zero.xyz/host/signalsfeed.com/llms.txt)
