# FieldPulse Crop Weather Risk Assessment

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

Returns a 7-14 day crop-specific weather risk analysis covering frost, heat stress, drought, waterlogging, and critical action windows for growers and farmer agents.

## Facts

- Endpoint: GET https://fieldpulse.theaslangroupllc.com/api/weather-risk
- Price: $0.08/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-weather-risk-assessment-7a42498d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SeZxxdYcseQnhJjpfV_ii

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-weather-risk-assessment-7a42498d
```

Example prompt: What are the crop-specific weather risks for my corn field in central Iowa over the next 14 days — specifically frost, heat stress, drought, and waterlogging — and are there any critical action windows I should know about?

## When to prefer this

Use this endpoint when a grower or farmer agent needs crop-specific weather risk analysis (not just a raw weather forecast) that maps meteorological conditions to agronomic risk categories like frost, heat stress, drought, and waterlogging, and identifies actionable management windows — especially within a 7-14 day planning horizon.

## Known failure modes

- Missing or invalid crop type returns an error or generic analysis
- Location outside supported coverage area returns no data
- Forecast horizon outside 7-14 day range may return partial results
- Invalid location coordinates or place name yields a lookup error
- Service unavailable during weather data provider outages

## How this service works

Crop weather risk assessment for grower and farmer agents. Returns 7-day crop-specific risk analysis covering frost, heat stress, drought, waterlogging, and critical action windows.

## Output

A structured 7-14 day crop-specific risk assessment covering frost risk, heat stress risk, drought conditions, waterlogging hazards, and identified critical action windows where the grower should take immediate field management steps.

## 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"
      }
     }
    }
   },
   "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",
  "risk_score": 52,
  "overall_risk": "moderate",
  "forecast_risks": [
   {
    "timing": "Days 5-7",
    "severity": "moderate",
    "risk_type": "drought",
    "impact_on_crop": "Flag leaf stage moisture stress"
   }
  ],
  "critical_window": "Apply foliar fertilizer before Day 5 dry period to support grain fill"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fieldpulse-crop-weather-risk-assessment-7a42498d/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)
