ToolAssay

Accumulates simple daily degree-days above a supplied base temperature and combi

Accumulates simple daily degree-days above a supplied base temperature and combines threshold progress with mean humidity and host availability. The score is a deterministic planning heuristic over caller data; it does not identify a pest, ingest surveillance data, model population dynamics or prescribe pesticide use.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
887 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/pest-outbreak

CategoryEverything else
Provider hostagri.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 887 ms

Example input (from the provider)

{
  "body": {
    "base_temperature_c": 10,
    "daily_conditions": [
      {
        "maximum_temperature_c": 24,
        "minimum_temperature_c": 12,
        "relative_humidity_percent": 78
      },
      {
        "maximum_temperature_c": 27,
        "minimum_temperature_c": 14,
        "relative_humidity_percent": 82
      },
      {
        "maximum_temperature_c": 28,
        "minimum_temperature_c": 15,
        "relative_humidity_percent": 76
      }
    ],
    "host_availability_fraction": 0.8,
    "outbreak_degree_day_threshold": 120
  },
  "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": {
            "base_temperature_c": {
              "maximum": 50,
              "minimum": -50,
              "type": "number"
            },
            "daily_conditions": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "maximum_temperature_c": {
                    "maximum": 100,
                    "minimum": -100,
                    "type": "number"
                  },
                  "minimum_temperature_c": {
                    "maximum": 100,
                    "minimum": -100,
                    "type": "number"
                  },
                  "relative_humidity_percent": {
                    "maximum": 100,
                    "minimum": 0,
                    "type": "number"
                  }
                },
                "required": [
                  "minimum_temperature_c",
                  "maximum_temperature_c",
                  "relative_humidity_percent"
                ],
                "type": "object"
              },
              "maxItems": 3660,
              "minItems": 1,
              "type": "array"
            },
            "host_availability_fraction": {
              "maximum": 1,
              "minimum": 0,
              "type": "number"
            },
            "outbreak_degree_day_threshold": {
              "maximum": 100000,
              "minimum": 0.001,
              "type": "number"
            }
          },
          "required": [
            "daily_conditions",
            "base_temperature_c",
            "outbreak_degree_day_threshold",
            "host_availability_fraction"
          ],
          "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"
}

This page as JSON