# FieldPulse Crop Yield Forecast

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

Returns a synthesized crop yield forecast combining USDA WASDE and FAO supply/demand data, production estimates, price implications, and regional breakdown for any major crop.

## Facts

- Endpoint: GET https://fieldpulse-tan.vercel.app/api/yield-forecast
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fieldpulse-crop-yield-forecast-4265f67d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YrO3zg271sFrYsvWPDcyz

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-4265f67d
```

Example prompt: Pull me a full crop yield forecast for US corn this season — I need the USDA WASDE and FAO supply/demand synthesis, production estimates, price implications, and a regional breakdown so I can make a trading decision.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source yield forecast that integrates both USDA WASDE and FAO data for a specific crop, including price implications and regional breakdowns — ideal for grower decision-making or ag-trader positioning rather than just raw weather or soil data.

## Known failure modes

- Unsupported or unrecognized crop name returns an error or empty result
- Region not covered by USDA/FAO data may yield incomplete regional breakdown
- Stale or delayed WASDE/FAO data if underlying source hasn't published latest report
- Missing required crop parameter returns a 400-level error
- Rate limiting or payment failure returns a 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

A structured yield forecast report including synthesized USDA WASDE and FAO supply/demand data, production estimates, price implications for the crop, and a regional breakdown covering major growing areas for the requested 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-4265f67d/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)
