# SignalsFeed Real-Time Signals Feed

> SignalsFeed Real-Time Signals Feed is a paid API for AI agents from signalsfeed.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a structured, multi-domain real-time signals feed covering economic indicators, central bank policy, commodities, equities, AI sector, semiconductors, and geopolitical risk with credibility scoring

## Facts

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

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

Example prompt: Pull me the latest real-time signals feed covering economic indicators, central bank policy, commodities, equities, AI and semiconductor news, and geopolitical risk — I need everything credibility-scored and structured for my trading agent.

## When to prefer this

Choose this endpoint when you need a broad, multi-domain real-time snapshot in a single call — covering macro, central bank, commodities, equities, AI, and geopolitics simultaneously with credibility scoring. Prefer sibling endpoints (e.g. /macro, /commodities, /ai) when you only need signals from one specific domain to reduce noise and cost.

## Known failure modes

- 402 Payment Required if x402 payment header is missing or USDC balance insufficient
- 401/403 Unauthorized if authentication credentials are invalid
- 429 Rate Limit Exceeded if request quota is surpassed
- 500 Internal Server Error if the upstream data pipeline is unavailable
- Empty or sparse feed if no signals have fired recently across requested domains

## How this service works

Real-time signals feed for AI agents. Covers economic indicators, central bank policy, commodities, equities, AI, semiconductors, and geopolitical risk. Structured signals with credibility scoring. Pay-per-request via x402; free discovery available.

## Output

A structured JSON array of signals across multiple domains (economic indicators, central bank policy, commodities, equities, AI/semiconductors, geopolitical risk), each with a credibility score and relevant metadata such as signal type, magnitude, and source context.

## Example request

```json
{
 "input": {
  "body": {},
  "queryParams": {
   "limit": 10
  }
 }
}
```

## Request schema (JSON Schema)

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

## 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-ab12082f/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)
