Uses rated electrical power, food mass, start and target temperature, specific h
Uses rated electrical power, food mass, start and target temperature, specific heat and an explicit efficiency range supplied by the caller. Optional vessel heat, evaporation and a caller-defined hold phase can be included. It contains no recipes, recipe text, food-specific cooking claims or hidden food database; the output separates the thermodynamic lower bound from the practical range and is not a food-safety clearance.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1187 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://solar.halowerk.com/low-wattage-cooking
| Category | Everything else |
|---|---|
| Provider host | solar.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 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 | 1187 ms |
Example input (from the provider)
{
"body": {
"device_power_w": 300,
"efficiency": {
"expected": 0.6,
"high": 0.75,
"low": 0.45
},
"food_mass_kg": 1.2,
"hold": {
"minutes": 20,
"power_fraction": 0.3
},
"specific_heat_kj_kg_k": 4,
"start_temperature_c": 20,
"target_temperature_c": 90,
"vessel": {
"mass_kg": 0.8,
"specific_heat_kj_kg_k": 0.9
}
},
"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": {
"device_power_w": {
"description": "Caller-supplied rated electrical input power in watts.",
"exclusiveMinimum": 0,
"maximum": 10000,
"type": "number"
},
"efficiency": {
"additionalProperties": false,
"properties": {
"expected": {
"exclusiveMinimum": 0,
"maximum": 1,
"type": "number"
},
"high": {
"exclusiveMinimum": 0,
"maximum": 1,
"type": "number"
},
"low": {
"exclusiveMinimum": 0,
"maximum": 1,
"type": "number"
}
},
"required": [
"low",
"expected",
"high"
],
"type": "object"
},
"evaporation": {
"additionalProperties": false,
"properties": {
"latent_heat_kj_kg": {
"maximum": 5000,
"minimum": 0,
"type": "number"
},
"mass_kg": {
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"required": [
"mass_kg",
"latent_heat_kj_kg"
],
"type": "object"
},
"food_mass_kg": {
"description": "Mass being heated in kilograms.",
"exclusiveMinimum": 0,
"maximum": 100,
"type": "number"
},
"hold": {
"additionalProperties": false,
"properties": {
"minutes": {
"maximum": 1440,
"minimum": 0,
"type": "number"
},
"power_fraction": {
"description": "Average fraction of rated input power during the hold phase.",
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"minutes",
"power_fraction"
],
"type": "object"
},
"specific_heat_kj_kg_k": {
"description": "Caller-supplied effective specific heat of the contents.",
"exclusiveMinimum": 0,
"maximum": 10,
"type": "number"
},
"start_temperature_c": {
"maximum": 200,
"minimum": -50,
"type": "number"
},
"target_temperature_c": {
"maximum": 300,
"minimum": -49,
"type": "number"
},
"vessel": {
"additionalProperties": false,
"properties": {
"mass_kg": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"specific_heat_kj_kg_k": {
"exclusiveMinimum": 0,
"maximum": 10,
"type": "number"
}
},
"required": [
"mass_kg",
"specific_heat_kj_kg_k"
],
"type": "object"
}
},
"required": [
"device_power_w",
"food_mass_kg",
"start_temperature_c",
"target_temperature_c",
"specific_heat_kj_kg_k",
"efficiency"
],
"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"
}