# SignalHarness Search Result Normalizer

> SignalHarness Search Result Normalizer is a paid API for AI agents from signalharness.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Normalizes and standardizes caller-supplied search result JSON into a consistent schema-valid format

## Facts

- Endpoint: POST https://signalharness.ai/api/agent/services/search_result_normalize/invoke
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalharness-search-result-normalizer-6c9a1e6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BfX6pL81z6DpawP-lP0SU

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 signalharness-search-result-normalizer-6c9a1e6b -d '<json body>'
```

Example prompt: I have a raw JSON search result from an external API and I need it normalized into a consistent, schema-valid format — can you run it through the SignalHarness search result normalizer and give me the cleaned output?

## When to prefer this

Choose this endpoint when you need to normalize or standardize search result JSON from heterogeneous sources into a consistent schema, especially in agentic pipelines that aggregate results from multiple search APIs. It is well-suited for pre-ingestion validation and normalization steps where consistency is critical. At $0.005 USDC per call it is cost-effective for high-frequency normalization tasks.

## Known failure modes

- Invalid or malformed request_json input may cause parsing errors
- JSON exceeding 65536 characters will be rejected
- Caller-supplied data that cannot be normalized may produce warnings but still succeed
- Payment failure on Base network may prevent execution
- Empty or too-short JSON strings (below 2 characters) will be rejected

## How this service works

Explore 330 pay-per-call x402 API services and 27 agent-native digital products, with Base USDC pricing, secure Polar checkout, and free discovery.

## Output

Returns a normalized analysis_json containing the standardized search result data, along with any warnings (e.g. about caller-supplied data), a service_id, evidence_scope, status, and a full execution receipt including payment details, result SHA-256 hash, network info, and timing metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request_json": {
   "type": "string",
   "maxLength": 65536,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "replay": false,
  "result": {
   "warnings": [
    "Verify the caller-supplied data before relying on this result."
   ],
   "service_id": "search_result_normalize",
   "analysis_json": "{\"example\":\"schema-valid caller-supplied data\"}",
   "evidence_scope": "caller_supplied_data"
  },
  "status": "succeeded",
  "receipt": {
   "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
   "usage": [],
   "status": "succeeded",
   "network": "eip155:8453",
   "artifacts": [],
   "endedAtMs": 0,
   "latencyMs": 0,
   "paymentId": "example-payment",
   "receiptId": "example-receipt",
   "requestId": "example-request",
   "serviceId": "search_result_normalize",
   "executionId": "example-execution",
   "startedAtMs": 0,
   "amountAtomic": "5000",
   "resultSha256": "995c0485b9adf5e441a14775a53a69a601de0d76ca0c6c6f1f2e639917257b47",
   "serviceVersion": "1.0.0",
   "settlementReference": "0x0000000000000000000000000000000000000000000000000000000000000000"
  },
  "artifacts": [],
  "requestId": "example-request",
  "executionId": "example-execution"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalharness-search-result-normalizer-6c9a1e6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalharness.ai](https://www.zero.xyz/host/signalharness.ai/llms.txt)
