Compares temperature, heart rate and an activity ratio with ranges supplied by t
Compares temperature, heart rate and an activity ratio with ranges supplied by the caller, then reports normalized deviations and a simple screening band. It is species-agnostic arithmetic, not veterinary diagnosis, remote monitoring, triage or treatment advice; reference ranges must come from a qualified source.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1183 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/livestock-health
| 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 | 1183 ms |
Example input (from the provider)
{
"body": {
"animals": [
{
"activity_ratio": 0.91,
"animal_id": "cow-104",
"heart_rate_bpm": 68,
"temperature_c": 38.7
},
{
"activity_ratio": 0.42,
"animal_id": "cow-105",
"heart_rate_bpm": 96,
"temperature_c": 40.2
}
],
"reference_ranges": {
"activity_ratio": {
"maximum": 1.3,
"minimum": 0.7
},
"heart_rate_bpm": {
"maximum": 84,
"minimum": 48
},
"temperature_c": {
"maximum": 39.3,
"minimum": 38
}
}
},
"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": {
"animals": {
"items": {
"additionalProperties": false,
"properties": {
"activity_ratio": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"animal_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"heart_rate_bpm": {
"maximum": 500,
"minimum": 0,
"type": "number"
},
"temperature_c": {
"maximum": 60,
"minimum": 0,
"type": "number"
}
},
"required": [
"animal_id",
"temperature_c",
"heart_rate_bpm",
"activity_ratio"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 1,
"type": "array"
},
"reference_ranges": {
"additionalProperties": false,
"properties": {
"activity_ratio": {
"additionalProperties": false,
"properties": {
"maximum": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"minimum": {
"maximum": 10,
"minimum": 0,
"type": "number"
}
},
"required": [
"minimum",
"maximum"
],
"type": "object"
},
"heart_rate_bpm": {
"additionalProperties": false,
"properties": {
"maximum": {
"maximum": 500,
"minimum": 0,
"type": "number"
},
"minimum": {
"maximum": 500,
"minimum": 0,
"type": "number"
}
},
"required": [
"minimum",
"maximum"
],
"type": "object"
},
"temperature_c": {
"additionalProperties": false,
"properties": {
"maximum": {
"maximum": 60,
"minimum": 0,
"type": "number"
},
"minimum": {
"maximum": 60,
"minimum": 0,
"type": "number"
}
},
"required": [
"minimum",
"maximum"
],
"type": "object"
}
},
"required": [
"temperature_c",
"heart_rate_bpm",
"activity_ratio"
],
"type": "object"
}
},
"required": [
"animals",
"reference_ranges"
],
"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"
}