Joins scalar facts by field name and evaluates explicit equals, not-equals, nume
Joins scalar facts by field name and evaluates explicit equals, not-equals, numeric bound, membership, contains, and existence rules. It does not retrieve law, determine which rules apply, provide legal advice, or certify regulatory compliance.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
877 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://gov.halowerk.com/v1/regulatory-check
| Category | Company and compliance |
|---|---|
| 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.004 | 877 ms |
Example input (from the provider)
{
"body": {
"facts": [
{
"field": "reserve_ratio",
"value": 1.15
},
{
"field": "jurisdiction",
"value": "DE"
},
{
"field": "disclosure",
"value": "Monthly treasury disclosure published"
}
],
"rules": [
{
"expected": 1,
"field": "reserve_ratio",
"operator": "gte",
"rule_id": "reserve-minimum"
},
{
"allowed_values": [
"DE",
"FR",
"NL"
],
"field": "jurisdiction",
"operator": "in",
"rule_id": "jurisdiction-list"
},
{
"expected": "published",
"field": "disclosure",
"operator": "contains",
"rule_id": "disclosure-text"
}
]
},
"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": {
"facts": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"value": {
"type": [
"string",
"number",
"boolean",
"null"
]
}
},
"required": [
"field",
"value"
],
"type": "object"
},
"maxItems": 10000,
"type": "array"
},
"rules": {
"items": {
"additionalProperties": false,
"properties": {
"allowed_values": {
"items": {
"type": [
"string",
"number",
"boolean",
"null"
]
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"expected": {
"type": [
"string",
"number",
"boolean",
"null"
]
},
"field": {
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"operator": {
"enum": [
"equals",
"not_equals",
"gte",
"lte",
"in",
"contains",
"exists"
],
"type": "string"
},
"rule_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"rule_id",
"field",
"operator"
],
"type": "object"
},
"maxItems": 10000,
"minItems": 1,
"type": "array"
}
},
"required": [
"facts",
"rules"
],
"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"
}