# FieldPulse Commodity Outlook

> FieldPulse Commodity Outlook is a paid API for AI agents from fieldpulse-tan.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns synthesized agricultural commodity market outlook including USDA WASDE and FAO data, futures price context, supply/demand balance, and exporter/importer outlooks for a specified crop.

## Facts

- Endpoint: GET https://fieldpulse-tan.vercel.app/api/commodity-outlook
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fieldpulse-commodity-outlook-36ad3d6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nbCItS4U84JWEIog-vkEx

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 fieldpulse-commodity-outlook-36ad3d6b
```

Example prompt: Give me the full commodity market outlook for soybeans — I want the USDA WASDE and FAO supply/demand balance, current futures price context, and the major exporter and importer outlooks for the 2024/25 crop year.

## When to prefer this

Use this endpoint when a grower, ag-trader, or buyer agent needs a comprehensive, synthesized commodity market outlook combining official government (USDA WASDE, FAO) data with futures price signals and trade-flow context. Prefer over general financial data APIs when agriculture-specific supply/demand balance and exporter/importer outlooks are needed for a specific crop.

## Known failure modes

- Unsupported or unrecognized crop name — returns error or empty result
- Missing required crop parameter — returns 400-level error
- USDA WASDE or FAO data temporarily unavailable — may return stale or partial data
- Futures data feed outage — futures price context may be missing
- Payment not processed (x402) — request blocked without 0.1 USDC payment

## How this service works

Agricultural commodity market outlook for grower and ag-trader agents. Synthesizes USDA WASDE and FAO data, futures price context, supply/demand balance, and exporter/importer outlooks for any crop.

## Output

A structured market outlook report for the specified crop, including synthesized USDA WASDE and FAO supply/demand data, futures price context, and outlook summaries for key exporting and importing countries/regions.

## 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": {
      "crop": {
       "type": "string"
      },
      "lang": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "crop": "soybeans",
  "market_outlook": {
   "direction": "bearish",
   "timeframe": "30-60 day horizon",
   "confidence": "medium"
  },
  "key_price_drivers": [
   "Record Brazilian crop",
   "Slow US export pace",
   "Chinese demand uncertainty"
  ],
  "current_price_context": {
   "exchange": "CBOT",
   "vs_1yr_ago": "-18%",
   "vs_5yr_avg": "-12%",
   "price_level": "$9.85/bushel"
  },
  "farmer_decision_guidance": "Consider pricing 20-30% of anticipated production now — bearish fundamental backdrop with seasonal harvest pressure approaching"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fieldpulse-commodity-outlook-36ad3d6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fieldpulse-tan.vercel.app](https://www.zero.xyz/host/fieldpulse-tan.vercel.app/llms.txt)
