Divides observed CPU, memory-time, network, tool-call and wall-time usage by cal
Divides observed CPU, memory-time, network, tool-call and wall-time usage by caller-supplied budgets, reports exceeded dimensions and ranks observations by the maximum ratio. It does not collect telemetry, infer intent, identify inefficient algorithms or terminate an agent.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1158 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://aialign.halowerk.com/v1/resource-hog
| Category | Everything else |
|---|---|
| Provider host | aialign.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 | 1158 ms |
Example input (from the provider)
{
"body": {
"budgets": {
"cpu_seconds": 600,
"memory_gb_seconds": 2400,
"network_mb": 500,
"tool_calls": 80,
"wall_seconds": 900
},
"observations": [
{
"agent_id": "planner-1",
"cpu_seconds": 410,
"memory_gb_seconds": 1900,
"network_mb": 130,
"tool_calls": 44,
"wall_seconds": 720
},
{
"agent_id": "crawler-2",
"cpu_seconds": 780,
"memory_gb_seconds": 3200,
"network_mb": 940,
"tool_calls": 115,
"wall_seconds": 880
}
]
},
"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": {
"budgets": {
"additionalProperties": false,
"properties": {
"cpu_seconds": {
"maximum": 1000000000000000,
"minimum": 1e-06,
"type": "number"
},
"memory_gb_seconds": {
"maximum": 1000000000000000000,
"minimum": 1e-06,
"type": "number"
},
"network_mb": {
"maximum": 1000000000000000,
"minimum": 1e-06,
"type": "number"
},
"tool_calls": {
"maximum": 1000000000000,
"minimum": 1e-06,
"type": "number"
},
"wall_seconds": {
"maximum": 1000000000000000,
"minimum": 1e-06,
"type": "number"
}
},
"required": [
"cpu_seconds",
"memory_gb_seconds",
"network_mb",
"tool_calls",
"wall_seconds"
],
"type": "object"
},
"observations": {
"items": {
"additionalProperties": false,
"properties": {
"agent_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"cpu_seconds": {
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
},
"memory_gb_seconds": {
"maximum": 1000000000000000000,
"minimum": 0,
"type": "number"
},
"network_mb": {
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
},
"tool_calls": {
"maximum": 1000000000000,
"minimum": 0,
"type": "integer"
},
"wall_seconds": {
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
}
},
"required": [
"agent_id",
"cpu_seconds",
"memory_gb_seconds",
"network_mb",
"tool_calls",
"wall_seconds"
],
"type": "object"
},
"maxItems": 100000,
"minItems": 1,
"type": "array"
}
},
"required": [
"budgets",
"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"
}