# FieldPulse Pest & Disease Risk Assessment

> FieldPulse Pest & Disease Risk Assessment is a paid API for AI agents from fieldpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns active pest and disease threats, EPPO/FAO IPPC outbreak alerts, weather-conducive risk conditions, and IPM treatment guidance for a specified crop and location.

## Facts

- Endpoint: GET https://fieldpulse.theaslangroupllc.com/api/pest-disease
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fieldpulse-pest-disease-risk-assessment-f71c3cb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_busKIYyar7NDCfL9IJk5P

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-pest-disease-risk-assessment-f71c3cb3
```

Example prompt: Can you run a pest and disease risk assessment for my winter wheat crop near Wichita, Kansas — I want to know about any active EPPO or FAO IPPC outbreak alerts, what weather conditions might be making things worse right now, and what IPM treatments I should be applying?

## When to prefer this

Use this endpoint when a grower, agronomist, or ag-tech agent needs real-time pest and disease intelligence — especially when cross-referencing international outbreak databases (EPPO, FAO IPPC) alongside local weather-driven risk. Prefer this over generic crop monitoring tools when IPM treatment guidance and official alert integration are required in a single call.

## Known failure modes

- Unsupported or unrecognized crop name returns an error or empty threat list
- No active alerts for the specified region results in an empty outbreak section
- Invalid or out-of-range coordinates may cause a location resolution failure
- Missing required parameters (crop, location) returns a 400-level validation error
- Payment failure via x402 protocol returns a 402 Payment Required response
- Weather data unavailable for remote locations may limit conducive-condition analysis

## How this service works

Pest and disease risk assessment for grower and agronomist agents. Returns active threats, EPPO and FAO IPPC outbreak alerts, weather-conducive conditions, and IPM treatment guidance for any crop.

## Output

Returns a structured report including active pest and disease threats ranked by severity, current EPPO and FAO IPPC outbreak alerts relevant to the crop and region, weather-conducive conditions that are elevating risk, and specific integrated pest management (IPM) treatment recommendations and intervention guidance.

## 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": "rice",
  "overall_risk": "high",
  "active_threats": [
   {
    "name": "Brown planthopper (Nilaparvata lugens)",
    "type": "insect",
    "risk_level": "high",
    "current_status": "Active outbreak reported in Mekong Delta"
   }
  ],
  "treatment_window": "Apply within 48 hours — high humidity and warm nights are accelerating spread",
  "preventive_actions": [
   "Apply imidacloprid or thiamethoxam at 10-day intervals",
   "Drain and dry fields for 3-5 days to disrupt BPH lifecycle"
  ]
 }
}
```

## More

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