Adds simple degree-days from caller-supplied daily temperatures to an existing a
Adds simple degree-days from caller-supplied daily temperatures to an existing accumulation, then marks days that meet a supplied maturity threshold, crop-moisture interval and maximum rain constraint. It does not obtain a forecast, model crop physiology, inspect a field or guarantee harvestability.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1178 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/harvest-window
| Category | Everything else |
|---|---|
| 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 | 1178 ms |
Example input (from the provider)
{
"body": {
"acceptable_crop_moisture_percent": {
"maximum": 18,
"minimum": 13
},
"accumulated_degree_days": 1380,
"base_temperature_c": 8,
"daily_forecast": [
{
"crop_moisture_percent": 19,
"date": "2026-09-01",
"maximum_temperature_c": 24,
"minimum_temperature_c": 13,
"rain_mm": 0.5
},
{
"crop_moisture_percent": 17,
"date": "2026-09-02",
"maximum_temperature_c": 26,
"minimum_temperature_c": 14,
"rain_mm": 0
},
{
"crop_moisture_percent": 16,
"date": "2026-09-03",
"maximum_temperature_c": 25,
"minimum_temperature_c": 15,
"rain_mm": 4
}
],
"maturity_degree_days": 1400,
"maximum_rain_mm": 2
},
"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": {
"acceptable_crop_moisture_percent": {
"additionalProperties": false,
"properties": {
"maximum": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"minimum": {
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"minimum",
"maximum"
],
"type": "object"
},
"accumulated_degree_days": {
"maximum": 100000,
"minimum": 0,
"type": "number"
},
"base_temperature_c": {
"maximum": 50,
"minimum": -50,
"type": "number"
},
"daily_forecast": {
"items": {
"additionalProperties": false,
"properties": {
"crop_moisture_percent": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"date": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"maximum_temperature_c": {
"maximum": 100,
"minimum": -100,
"type": "number"
},
"minimum_temperature_c": {
"maximum": 100,
"minimum": -100,
"type": "number"
},
"rain_mm": {
"maximum": 1000,
"minimum": 0,
"type": "number"
}
},
"required": [
"date",
"minimum_temperature_c",
"maximum_temperature_c",
"crop_moisture_percent",
"rain_mm"
],
"type": "object"
},
"maxItems": 366,
"minItems": 1,
"type": "array"
},
"maturity_degree_days": {
"maximum": 100000,
"minimum": 0.001,
"type": "number"
},
"maximum_rain_mm": {
"maximum": 1000,
"minimum": 0,
"type": "number"
}
},
"required": [
"accumulated_degree_days",
"maturity_degree_days",
"base_temperature_c",
"acceptable_crop_moisture_percent",
"maximum_rain_mm",
"daily_forecast"
],
"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"
}