Applies a fixed, published logistic equation to aggregate caller-supplied featur
Applies a fixed, published logistic equation to aggregate caller-supplied features and reports an estimated turnout range. It is an untrained scenario heuristic, not a calibrated election forecast, individual propensity score, or basis for voter targeting.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
883 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://gov.halowerk.com/v1/voter-turnout-predict
| Category | Everything else |
|---|---|
| Provider host | gov.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 | 883 ms |
Example input (from the provider)
{
"body": {
"eligible_voters": 12000,
"participation_trend_percentage_points": 2.5,
"prior_turnout_rate": 0.38,
"proposal_count": 4,
"reminders_per_voter": 2,
"voting_window_days": 7
},
"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": {
"eligible_voters": {
"maximum": 1000000000,
"minimum": 1,
"type": "integer"
},
"participation_trend_percentage_points": {
"maximum": 100,
"minimum": -100,
"type": "number"
},
"prior_turnout_rate": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"proposal_count": {
"maximum": 10000,
"minimum": 1,
"type": "integer"
},
"reminders_per_voter": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"voting_window_days": {
"maximum": 365,
"minimum": 0.01,
"type": "number"
}
},
"required": [
"eligible_voters",
"prior_turnout_rate",
"participation_trend_percentage_points",
"voting_window_days",
"reminders_per_voter",
"proposal_count"
],
"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"
}