Compares supplied visits, mean dwell time and conversions with explicit baseline
Compares supplied visits, mean dwell time and conversions with explicit baselines and combines the three ratios using caller-supplied weights. It does not collect location data, count people, infer demographics or forecast demand. Inputs should be aggregated and lawfully collected.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
891 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://prop.halowerk.com/v1/foot-traffic-retail
| Category | Commerce and shopping |
|---|---|
| Provider host | prop.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 | 891 ms |
Example input (from the provider)
{
"body": {
"intervals": [
{
"baseline_conversion_rate": 0.14,
"baseline_dwell_minutes": 13,
"baseline_visits": 160,
"conversions": 29,
"interval_id": "monday-12-13",
"mean_dwell_minutes": 14.2,
"visits": 184
},
{
"baseline_conversion_rate": 0.14,
"baseline_dwell_minutes": 13,
"baseline_visits": 150,
"conversions": 18,
"interval_id": "monday-13-14",
"mean_dwell_minutes": 12.1,
"visits": 142
}
],
"weights": {
"conversion": 0.3,
"dwell": 0.2,
"visits": 0.5
}
},
"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": {
"intervals": {
"items": {
"additionalProperties": false,
"properties": {
"baseline_conversion_rate": {
"maximum": 1,
"minimum": 1e-06,
"type": "number"
},
"baseline_dwell_minutes": {
"maximum": 100000,
"minimum": 0.001,
"type": "number"
},
"baseline_visits": {
"maximum": 1000000000,
"minimum": 0.001,
"type": "number"
},
"conversions": {
"maximum": 1000000000,
"minimum": 0,
"type": "integer"
},
"interval_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"mean_dwell_minutes": {
"maximum": 100000,
"minimum": 0,
"type": "number"
},
"visits": {
"maximum": 1000000000,
"minimum": 0,
"type": "integer"
}
},
"required": [
"interval_id",
"visits",
"mean_dwell_minutes",
"conversions",
"baseline_visits",
"baseline_dwell_minutes",
"baseline_conversion_rate"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 1,
"type": "array"
},
"weights": {
"additionalProperties": false,
"properties": {
"conversion": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"dwell": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"visits": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"visits",
"dwell",
"conversion"
],
"type": "object"
}
},
"required": [
"intervals",
"weights"
],
"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"
}