# RQM Equalize Pilot Capture

> RQM Equalize Pilot Capture is a paid API for AI agents from jobs.rqmtechnologies.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fits a bounded quaternion NLMS equalizer to received and desired pilot signal captures and returns the learned equalization outputs

## Facts

- Endpoint: POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/equalize-pilot-capture-v1
- 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/rqm-equalize-pilot-capture-c77b5b0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CYx_mPOlax6BMPqlbHXzi

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 rqm-equalize-pilot-capture-c77b5b0b -d '<json body>'
```

Example prompt: Fit a quaternion NLMS equalizer to my pilot capture: I have 2 input channels, 2 output channels, 5 filter taps, a step size of 0.1, and I'll provide the received quaternion samples, desired quaternion samples, and a boolean pilot mask — can you run the equalize pilot capture and return the learned outputs?

## When to prefer this

Choose this endpoint when you need a bounded, deterministic adaptive equalization result from known pilot symbols in a quaternion-domain signal — particularly for MIMO or multi-channel scenarios where you want to gate or directly feed a downstream computation step. Prefer this over generic DSP services when your signal representation is quaternion-valued and you need NLMS adaptation with a controllable step size and tap count. Do not use if you need real-time streaming equalization, hardware-level ground truth, causal diagnosis, or if your signal is not representable in quaternion form.

## Known failure modes

- Mismatched array lengths between received, desired, and pilot_mask cause validation errors
- input_channels or output_channels out of range (1–4) returns a schema validation error
- taps exceeding maximum of 16 or below minimum of 1 are rejected
- step_size of zero or negative value is rejected (exclusive minimum)
- epsilon of zero or negative value is rejected (exclusive minimum)
- received or desired arrays exceeding 1024 samples are rejected
- Malformed quaternion samples (missing w, x, y, z fields) cause request rejection
- Payment failure or insufficient USDC balance causes HTTP 402 error

## How this service works

Equalize Pilot Capture: Fit the bounded reference quaternion NLMS equalizer and return learned outputs. Use when: The caller needs a bounded objective result that can directly gate or feed its next step. Returns: strict JSON summary, checksummed artifact manifest. Boundaries: Bounded deterministic reference processing only; no causal, hardware, operational, performance, classifie...

## Output

Returns the learned outputs of a bounded quaternion NLMS equalizer fitted to the supplied pilot capture, including the equalized signal samples that can be used directly to gate or feed subsequent processing steps. The result is deterministic and bounded, suitable for downstream automation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request": {
   "type": "object",
   "description": "Equalize Pilot Capture request metadata is discovery-only while execution is disabled.",
   "additionalProperties": true
  },
  "schema_version": {
   "const": "rqm.jobs.bazaar-buyer-job-request.v1"
  },
  "idempotency_key": {
   "type": "string",
   "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
   "maxLength": 128,
   "minLength": 1
  },
  "max_total_price": {
   "type": "string",
   "pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rqm-equalize-pilot-capture-c77b5b0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jobs.rqmtechnologies.com](https://www.zero.xyz/host/jobs.rqmtechnologies.com/llms.txt)
