Computes a deterministic shortest path over caller-supplied directed or bidirect
Computes a deterministic shortest path over caller-supplied directed or bidirectional links with non-negative costs. It does not measure live radio conditions, reserve capacity or push routes to devices.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
886 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/mesh-route
| Category | Everything else |
|---|---|
| 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 | 886 ms |
Example input (from the provider)
{
"body": {
"goal": "sensor",
"links": [
{
"cost": 1,
"from": "gateway",
"to": "relay-a"
},
{
"cost": 2,
"from": "relay-a",
"to": "sensor"
},
{
"cost": 2,
"from": "gateway",
"to": "relay-b"
},
{
"cost": 4,
"from": "relay-b",
"to": "sensor"
}
],
"nodes": [
"gateway",
"relay-a",
"relay-b",
"sensor"
],
"start": "gateway"
},
"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": {
"goal": {
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"links": {
"items": {
"additionalProperties": false,
"properties": {
"bidirectional": {
"default": true,
"type": "boolean"
},
"cost": {
"maximum": 1000000000,
"minimum": 0,
"type": "number"
},
"from": {
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"to": {
"maxLength": 64,
"minLength": 1,
"type": "string"
}
},
"required": [
"from",
"to",
"cost"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 1,
"type": "array"
},
"nodes": {
"items": {
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"maxItems": 500,
"minItems": 2,
"type": "array",
"uniqueItems": true
},
"start": {
"maxLength": 64,
"minLength": 1,
"type": "string"
}
},
"required": [
"nodes",
"links",
"start",
"goal"
],
"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"
}