# RQM Verify Wave Pipeline

> RQM Verify Wave Pipeline 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).

Execute a bounded Wave IR pipeline of signal-processing operators on complex samples and return a single assertion verdict with output

## Facts

- Endpoint: POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/verify-wave-pipeline-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-verify-wave-pipeline-25409361
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-vLJRlE8eWIWwdZQRqe2K

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-verify-wave-pipeline-25409361 -d '<json body>'
```

Example prompt: Run my wave IR pipeline on channel 'ch0' sampled at 1000 Hz — apply FFT then a PhaseShift of 1.5708 radians — and verify that the output magnitude matches my assertion; tell me if it passes or fails.

## When to prefer this

Use this endpoint when you need a deterministic, bounded pass/fail assertion on a signal-processing pipeline over complex IQ data — especially when the result must directly gate or feed a downstream automated step. Prefer this over hardware measurement endpoints when you need software-verifiable correctness rather than physical truth, and over streaming endpoints when you need a single bounded result. Choose this over generic FFT libraries when you also need built-in assertion and round-trip validation in a single API call.

## Known failure modes

- Invalid operator sequence or unsupported operator type returns 400
- Channel samples exceed maxItems (1024) or fall below minItems (1) causes validation error
- channel_id pattern mismatch (non-alphanumeric/non-separator characters) causes rejection
- More than 2 channels submitted causes schema validation failure
- Assertion not satisfied returns a failing verdict (not an error) with output
- PhaseShift angle outside ±8π range causes validation error
- Payment not included or insufficient USDC causes x402 payment required response

## How this service works

Verify Wave Pipeline: Execute a bounded Wave IR pipeline and return one assertion verdict with its output. 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

A single assertion verdict (pass/fail) along with the pipeline output data after executing the specified Wave IR operators on the provided complex IQ samples, suitable for directly gating or feeding the next workflow step.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request": {
   "type": "object",
   "description": "Verify Wave Pipeline 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-verify-wave-pipeline-25409361/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)
