# AgentWork Host Report

> AgentWork Host Report is a paid API for AI agents from api.agentwork.run, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-22).

Returns a lightweight health snapshot of a host node — disk, load, memory, and open-for-work status — without invoking any LLM, settled via dual-rail USDC at $0.01.

## Facts

- Endpoint: POST https://api.agentwork.run/v1/jobs/host.report
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-22
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentwork-host-report-ea58f2a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sPmFFP3eEOV13oHUYH9Bl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentwork-host-report-ea58f2a9 -d '<json body>'
```

Example prompt: Run a quick host health smoke test on the agentwork node and tell me if it's open for work — check disk, load, and memory.

## When to prefer this

Choose this endpoint when you need a cheap, fast, non-LLM health check on an agentwork host before assigning jobs or when continuously monitoring node availability. At $0.01 per call it is the lowest-cost way to determine host readiness. Prefer it over job-submission endpoints when you only need a go/no-go capacity signal without triggering any work.

## Known failure modes

- Host unreachable or offline — returns an error indicating no response from the node
- Payment not settled — x402 dual-rail USDC payment failure results in 402 response
- Invalid skill value — may return empty or error if skill filter is unrecognized
- Rate limit exceeded — too many probes in a short window may be throttled

## How this service works

No-LLM host smoke: disk, load, memory, open_for_work. Cheapest settle test on dual-rail USDC.

## Output

A JSON object containing the current status of the host's disk, load, memory, and an open_for_work boolean, reflecting whether the node is healthy and accepting new jobs — returned without any LLM invocation, at minimal cost.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "skill": {
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentwork-host-report-ea58f2a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwork.run](https://www.zero.xyz/host/api.agentwork.run/llms.txt)
