# FieldPulse Pest & Disease Risk Assessment

> FieldPulse Pest & Disease Risk Assessment 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-15).

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

## Facts

- Endpoint: GET https://fieldpulse-tan.vercel.app/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-c0a88e46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VpJkwhUK7H1fYNyvXjNAq

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-c0a88e46
```

Example prompt: What are the active pest and disease threats for my corn crop in central Iowa right now, including any EPPO or FAO IPPC outbreak alerts and IPM treatment recommendations I should act on?

## When to prefer this

Use this endpoint when a grower or agronomist agent needs a comprehensive, location-aware pest and disease risk briefing for a specific crop, especially when EPPO or FAO IPPC regulatory alerts, weather-driven disease pressure, and IPM treatment priorities are all needed in a single call. Prefer this over generic weather risk endpoints when the focus is specifically on biotic stressors (pests, pathogens) rather than abiotic risks (frost, drought).

## Known failure modes

- Unknown or unsupported crop name returns an error or empty threat list
- Missing location parameter results in inability to localize outbreak alerts or weather-conducive conditions
- No active threats found returns an empty or minimal response with no IPM guidance
- External EPPO/FAO data feeds unavailable causes stale or incomplete alert data
- Payment failure (x402) blocks the request before processing

## 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

A structured assessment including: list of active pest threats and disease risks for the specified crop, EPPO and FAO IPPC outbreak alert notices relevant to the region, weather-conducive conditions that elevate risk, and actionable IPM treatment guidance prioritized by threat severity.

## 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-c0a88e46/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)
