# FieldPulse Crop Yield Forecast

> FieldPulse Crop Yield Forecast is a paid API for AI agents from fieldpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Synthesizes USDA WASDE and FAO supply/demand data to generate crop yield forecasts including production estimates, price implications, and regional breakdowns for major crops.

## Facts

- Endpoint: GET https://fieldpulse.theaslangroupllc.com/api/yield-forecast
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fieldpulse-crop-yield-forecast-9f14782c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_73JVKldt5pnIP8OjVT4JE

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-crop-yield-forecast-9f14782c
```

Example prompt: Give me a yield forecast for corn in the US Midwest for the 2025 season — I need production estimates, price implications, and a regional breakdown based on the latest USDA WASDE and FAO data.

## When to prefer this

Use this endpoint when an agent or user needs a data-driven crop yield forecast grounded in official USDA WASDE and FAO supply/demand reports, especially for ag-trading decisions, procurement planning, or grower production planning. Prefer this over general weather or market endpoints when the specific need is yield volume, production outlook, and price implications for a major commodity crop.

## Known failure modes

- Unsupported or minor crop type not covered by WASDE/FAO — returns 400 or empty result
- Region too granular or unrecognized — may return top-level national estimate or error
- USDA WASDE or FAO data temporarily unavailable — stale data or 503 response
- Missing required crop parameter — 400 bad request
- Rate limiting or payment failure via x402 — 402 or 429 response

## How this service works

Crop yield forecast for grower and ag-trader agents. Synthesizes USDA WASDE and FAO supply/demand, production estimates, price implications, and a regional breakdown for any major crop.

## Output

Returns a structured crop yield forecast synthesized from USDA WASDE and FAO supply/demand reports, including production volume estimates, price implication analysis, and a regional breakdown for the specified major crop.

## 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": {
      "lat": {
       "type": "string"
      },
      "lon": {
       "type": "string"
      },
      "crop": {
       "type": "string"
      },
      "lang": {
       "type": "string"
      },
      "region": {
       "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": "wheat",
  "region": "Black Sea",
  "season": "2026/27",
  "yield_outlook": {
   "basis": "Dry conditions in Ukraine reducing winter wheat yield potential",
   "direction": "below_average",
   "confidence": "medium"
  },
  "price_implications": {
   "direction": "bullish",
   "key_level": "$6.20/bu CBOT resistance"
  },
  "production_estimate": {
   "value": "78.5 Mt combined UA+RU",
   "vs_prior_year": "-8%"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fieldpulse-crop-yield-forecast-9f14782c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fieldpulse.theaslangroupllc.com](https://www.zero.xyz/host/fieldpulse.theaslangroupllc.com/llms.txt)
