Filters caller-supplied bids by CPU, memory and latency constraints, computes wo
Filters caller-supplied bids by CPU, memory and latency constraints, computes workload cost from quoted unit prices, and ranks feasible candidates by total cost then latency. It does not contact providers, attest hardware or place a bid.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
875 msmedian answer time
$0.004listed price per call
$0.004price 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://iot.halowerk.com/v1/edge-compute-bid
| Category | Market data |
|---|---|
| Provider host | iot.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.004 | 875 ms |
Example input (from the provider)
{
"body": {
"candidates": [
{
"available_cpu_seconds": 300,
"available_memory_gb_seconds": 1000,
"latency_ms": 24,
"price_per_cpu_second": 2e-05,
"price_per_memory_gb_second": 4e-06,
"provider": "edge-a"
},
{
"available_cpu_seconds": 1000,
"available_memory_gb_seconds": 1000,
"latency_ms": 41,
"price_per_cpu_second": 1.5e-05,
"price_per_memory_gb_second": 6e-06,
"provider": "edge-b"
}
],
"cpu_seconds": 120,
"max_latency_ms": 50,
"memory_gb_seconds": 480
},
"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": {
"candidates": {
"items": {
"additionalProperties": false,
"properties": {
"available_cpu_seconds": {
"maximum": 1000000000000,
"minimum": 0,
"type": "number"
},
"available_memory_gb_seconds": {
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
},
"latency_ms": {
"maximum": 1000000000,
"minimum": 0,
"type": "number"
},
"price_per_cpu_second": {
"maximum": 1000000,
"minimum": 0,
"type": "number"
},
"price_per_memory_gb_second": {
"maximum": 1000000,
"minimum": 0,
"type": "number"
},
"provider": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"provider",
"available_cpu_seconds",
"available_memory_gb_seconds",
"latency_ms",
"price_per_cpu_second",
"price_per_memory_gb_second"
],
"type": "object"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"cpu_seconds": {
"maximum": 1000000000,
"minimum": 0.001,
"type": "number"
},
"max_latency_ms": {
"maximum": 1000000000,
"minimum": 0,
"type": "number"
},
"memory_gb_seconds": {
"maximum": 1000000000000,
"minimum": 0,
"type": "number"
}
},
"required": [
"cpu_seconds",
"memory_gb_seconds",
"max_latency_ms",
"candidates"
],
"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"
}