Converts each supplied storage segment into equivalent ageing at a reference tem
Converts each supplied storage segment into equivalent ageing at a reference temperature using a caller-supplied Q10 factor, then compares the sum with nominal shelf life. This empirical approximation is not a microbial model, food-safety decision, sensor feed, cold-chain certification or release authorization.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
890 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/supply-spoilage
| 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 | 890 ms |
Example input (from the provider)
{
"body": {
"nominal_shelf_life_days": 14,
"q10_factor": 2,
"reference_temperature_c": 4,
"temperature_history": [
{
"duration_hours": 96,
"temperature_c": 4
},
{
"duration_hours": 8,
"temperature_c": 14
},
{
"duration_hours": 48,
"temperature_c": 6
}
]
},
"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": {
"nominal_shelf_life_days": {
"maximum": 100000,
"minimum": 0.001,
"type": "number"
},
"q10_factor": {
"maximum": 20,
"minimum": 1,
"type": "number"
},
"reference_temperature_c": {
"maximum": 100,
"minimum": -100,
"type": "number"
},
"temperature_history": {
"items": {
"additionalProperties": false,
"properties": {
"duration_hours": {
"maximum": 1000000,
"minimum": 0.001,
"type": "number"
},
"temperature_c": {
"maximum": 200,
"minimum": -100,
"type": "number"
}
},
"required": [
"duration_hours",
"temperature_c"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 1,
"type": "array"
}
},
"required": [
"nominal_shelf_life_days",
"reference_temperature_c",
"q10_factor",
"temperature_history"
],
"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"
}