Runs a deterministic bucket balance for each supplied day
Runs a deterministic bucket balance for each supplied day. Rain is reduced by a caller-selected runoff fraction, evapotranspiration is subtracted, water above field capacity is reported as drainage, and storage is bounded at zero. This is a root-zone accounting model, not a sensor reading, weather forecast, hydraulic simulation or irrigation command.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
884 msmedian answer time
$0.003listed price per call
$0.003price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agri.halowerk.com/v1/soil-moisture
| Category | Market data |
|---|---|
| Provider host | agri.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.003 | 884 ms |
Example input (from the provider)
{
"body": {
"evapotranspiration_mm": [
4.2,
4.5,
4.8,
5
],
"field_capacity_mm": 120,
"initial_water_mm": 82,
"irrigation_mm": [
10,
0,
0,
12
],
"rainfall_mm": [
0,
8,
2,
0
],
"runoff_fraction": 0.08
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"evapotranspiration_mm": {
"items": {
"maximum": 500,
"minimum": 0,
"type": "number"
},
"maxItems": 3660,
"minItems": 1,
"type": "array"
},
"field_capacity_mm": {
"description": "Maximum water stored by the modeled bucket.",
"maximum": 10000,
"minimum": 0.001,
"type": "number"
},
"initial_water_mm": {
"description": "Initial plant-available water in the modeled root zone.",
"maximum": 10000,
"minimum": 0,
"type": "number"
},
"irrigation_mm": {
"items": {
"maximum": 5000,
"minimum": 0,
"type": "number"
},
"maxItems": 3660,
"minItems": 1,
"type": "array"
},
"rainfall_mm": {
"items": {
"maximum": 5000,
"minimum": 0,
"type": "number"
},
"maxItems": 3660,
"minItems": 1,
"type": "array"
},
"runoff_fraction": {
"description": "Fraction of rainfall excluded as runoff.",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"initial_water_mm",
"field_capacity_mm",
"rainfall_mm",
"irrigation_mm",
"evapotranspiration_mm"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}