# USDA Agricultural Signal Fusion — Spot Price, Percentile & YoY Context

> USDA Agricultural Signal Fusion — Spot Price, Percentile & YoY Context is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Combines USDA Market News spot price with NASS production and stocks data into a fused signal including spot change, price percentile over history, and year-over-year production/stocks context for corn, soybeans, or wheat.

## Facts

- Endpoint: GET https://payai.agentstools.dev/agri/signal
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usda-agricultural-signal-fusion-spot-price-percentile-yoy-context-60d0f99c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p_UJB3os7eoLrJ8eur2W9

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 usda-agricultural-signal-fusion-spot-price-percentile-yoy-context-60d0f99c
```

Example prompt: Can you pull the fused agricultural signal for soybeans — I want to see the current spot price, where it sits historically as a percentile, and the year-over-year production and stocks context?

## When to prefer this

Use this endpoint when you need a holistic, pre-computed agricultural market signal for a major US grain commodity that combines price level, price trend, historical price percentile, and supply/production context in a single call. Prefer this over separate NASS crop production or raw spot price lookups when you need cross-source fusion rather than raw data.

## Known failure modes

- Unsupported commodity value returns a validation error (only corn, soybeans, wheat accepted)
- USDA upstream data unavailable or stale returns an error or partial signal
- Missing or malformed query parameter defaults to corn without error
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

USDA NASS production and grain-stocks signal for a commodity: the QuickStats production and stocks series computed into context - production and stocks year-over-year change and history percentiles. When a USDA Market News key is configured it also folds in the spot/auction price and its change; without one it returns the NASS side and notes the gap.

## Output

Returns a computed signal object for the requested commodity including: the current USDA Market News spot price, the recent spot price change, the price percentile relative to full available price history, and year-over-year percentage changes in NASS production and grain stocks — all fused into a single response.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "commodity": {
       "enum": [
        "corn",
        "soybeans",
        "wheat"
       ],
       "type": "string",
       "description": "Commodity to fuse (default corn)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/usda-agricultural-signal-fusion-spot-price-percentile-yoy-context-60d0f99c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
