# SignalsFeed Commodities Signal Feed

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

Retrieves verified AI, semiconductor, and macro commodity signals with credibility scoring and source links, with premium full signals available via x402 micropayment

## Facts

- Endpoint: GET https://www.signalsfeed.com/api/v1/commodities
- 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-commodities-signal-feed-0106455d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_myQb40dqyggQcg0Sobeg1

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-commodities-signal-feed-0106455d
```

Example prompt: Pull me up to 20 premium commodity signals from SignalsFeed — the ones with full credibility scores and source links — paying the $0.01 USDC unlock, and filter to only quality_status=premium signals observed since January 1, 2025.

## When to prefer this

Use this endpoint when you need structured, credibility-scored commodity signals covering AI, semiconductor, or macro domains and want to pay per-call via x402 micropayments rather than a subscription. Ideal for AI agents that need to browse or paginate through the signal inventory for free first, then selectively unlock premium full signals by UUID for $0.01 USDC per batch of up to 20.

## Known failure modes

- Payment not processed — returns free teaser signals instead of full premium content
- Invalid UUID in ids parameter — may return empty signals array or partial results
- Invalid cursor — returns 400 error or resets pagination
- since timestamp in wrong format — returns 400 validation error
- limit exceeds maximum of 100 — returns 400 or clamps to max
- No signals matching quality_status filter — returns count:0 with empty signals array
- x402 micropayment failure — falls back to free discovery tier

## How this service works

SignalsFeed is a signals feed for AI agents: verified AI, semiconductor, and macro signals with credibility scoring, source links, and x402 micropayments. $0.01 returns up to 20 premium full signals.

## Output

A JSON object containing a count of returned signals, a format indicator ('full' for paid, 'teaser' for free), an array of signal objects with credibility scores and source links, optional top_topics and top_signals summaries, a next_cursor for pagination, and a has_more boolean flag.

## 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-commodities-signal-feed-0106455d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.signalsfeed.com](https://www.zero.xyz/host/www.signalsfeed.com/llms.txt)
