# FieldPulse Soil Intelligence API

> FieldPulse Soil Intelligence API 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 live soil moisture at multiple depths, soil temperature, evapotranspiration, and soil-health signals for any geographic location.

## Facts

- Endpoint: GET https://fieldpulse.theaslangroupllc.com/api/soil-intel
- 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-soil-intelligence-api-5df706d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RWFE869HCtZY-jS7W5a7h

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-soil-intelligence-api-5df706d7
```

Example prompt: Pull live soil conditions for my field at 41.8781° N, 87.6298° W — I need soil moisture at all available depths, soil temperature, and today's evapotranspiration reading so I can make an irrigation call.

## When to prefer this

Choose this endpoint when you need real-time, multi-depth soil moisture, soil temperature, and evapotranspiration data for a specific field location to support irrigation scheduling, agronomic decisions, or soil health monitoring. Prefer this over general weather APIs when soil-specific signals at multiple depths are required rather than surface-level atmospheric data.

## Known failure modes

- Invalid or missing coordinates return a 400 error
- Location outside supported coverage area returns no data or an error
- Payment failure (x402) returns a 402 Payment Required response
- Rate limiting or quota exhaustion returns a 429 error
- Temporary sensor or data feed outage may return stale or unavailable data

## How this service works

Soil intelligence for grower and agronomist agents. Returns observed surface and root-zone soil wetness (fraction of saturation), computed FAO-56 evapotranspiration, and soil-health signals for any location.

## Output

Returns real-time soil moisture readings at multiple soil depths, soil temperature, evapotranspiration (ET) values, and soil-health indicator signals for the requested geographic location, enabling data-driven irrigation and agronomic decisions.

## 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"
      },
      "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": {
  "soil_wetness": {
   "as_of": "2026-07-09",
   "units": "fraction of saturation (0-1) — NOT volumetric water content",
   "status": "adequate",
   "lag_days": 4,
   "surface_frac_0_1": 0.42,
   "rootzone_frac_0_1": 0.55
  },
  "soil_temperature": {
   "note": "Soil temperature is not published by our licensed sources — take a field probe reading.",
   "available": false
  },
  "evapotranspiration": {
   "method": "FAO-56 Penman-Monteith computed from MET Norway forecast",
   "et0_mm_today": 3.8,
   "interpretation": "Moderate water demand — irrigate every 4-5 days for sandy loam",
   "et0_mm_7day_avg": 3.5
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fieldpulse-soil-intelligence-api-5df706d7/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)
