Scores caller-supplied vote/transfer observations using cohort-relative transfer
Scores caller-supplied vote/transfer observations using cohort-relative transfer size, transfer recency, and repeated-counterparty count. The output is an investigative triage heuristic, not proof of vote buying, identity linkage, or wrongdoing.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.004listed price per call
n/aprice 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/vote-buying-detect
| 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
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"flag_threshold": 0.7,
"observations": [
{
"associated_transfer_amount": 12,
"choice": "for",
"repeated_counterparty_count": 0,
"transfer_age_hours": 240,
"voter_id": "voter-1"
},
{
"associated_transfer_amount": 10,
"choice": "against",
"repeated_counterparty_count": 1,
"transfer_age_hours": 180,
"voter_id": "voter-2"
},
{
"associated_transfer_amount": 900,
"choice": "for",
"repeated_counterparty_count": 7,
"transfer_age_hours": 2,
"voter_id": "voter-3"
}
]
},
"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": {
"flag_threshold": {
"description": "Risk-score threshold used only for triage.",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"observations": {
"items": {
"additionalProperties": false,
"properties": {
"associated_transfer_amount": {
"description": "Caller-linked transfer amount in one consistent unit.",
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
},
"choice": {
"enum": [
"for",
"against",
"abstain"
],
"type": "string"
},
"repeated_counterparty_count": {
"description": "Prior linked transfers with the same counterparty.",
"maximum": 100000,
"minimum": 0,
"type": "integer"
},
"transfer_age_hours": {
"description": "Hours between transfer and vote.",
"maximum": 8760,
"minimum": 0,
"type": "number"
},
"voter_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"voter_id",
"choice",
"associated_transfer_amount",
"transfer_age_hours",
"repeated_counterparty_count"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 3,
"type": "array"
}
},
"required": [
"observations"
],
"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"
}